/
githubmirror
/
distro
Обзор
Документация
Войти
/
githubmirror
/
distro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.1.2
setup.py
27 строк
595 B
nir0s
fix for python 3
13 дек 2015, 04:55
13 дек 2015, 04:55
7fa0f83
Код
Авторство
О чём код?
from setuptools import setup import os import codecs 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='ld', version="0.1.2", url='https://github.com/nir0s/ld', author='nir0s', author_email='nir36g@gmail.com', license='LICENSE', platforms='All', description='OS Platform Information API', long_description=read('README.rst'), packages=['ld'], install_requires=[ "click==6.2", ], )