/
githubmirror
/
distro
Обзор
Документация
Войти
/
githubmirror
/
distro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.2.0
setup.py
24 строки
548 B
nir0s
removed click dependency and up'd ver to 0.2.0
24 дек 2015, 21:52
24 дек 2015, 21:52
d8a86e3
Код
Авторство
О чём код?
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.2.0", url='https://github.com/nir0s/ld', author='nir0s', author_email='nir36g@gmail.com', license='LICENSE', platforms='All', description='Linux OS Platform Information API', long_description=read('README.rst'), packages=['ld'] )