/
githubmirror
/
distro
Обзор
Документация
Войти
/
githubmirror
/
distro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.6.0
setup.py
55 строк
2 KB
Nir Cohen
Update setup.py
21 апр 2016, 09:28
21 апр 2016, 09:28
f22e0d0
Код
Авторство
О чём код?
# Copyright 2015,2016 Nir Cohen # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from setuptools import setup import os import codecs # The following version is parsed by other parts of this package. # Don't change the format of the line, or the variable name. package_version = "0.6.0" here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open return codecs.open(os.path.join(here, *parts), 'r').read() setup( name='distro', version=package_version, url='https://github.com/nir0s/distro', author='Nir Cohen', author_email='nir36g@gmail.com', license='Apache License, Version 2.0', platforms='All', description='Linux Distribution - a Linux OS platform information API', long_description=read('README.rst'), py_modules=['distro'], install_requires=['six'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Operating System', ] )