1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/douglarek-pgist

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
setup.py 1.3 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Lingchao Xin Отправлено 17.05.2014 18:48 a182665
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# vim: sw=4 ts=4 expandtab ai
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup (
name='pgist',
version='0.4.1',
license=open('LICENSE').read(),
description='A Python command-line wrapper with github3.py library to access GitHub Gist',
long_description=README,
author='Lingchao Xin',
author_email='douglarek@gmail.com',
url='https://github.com/douglarek/pgist',
py_modules=['pgist'],
package_data={'': ['LICENSE',]},
install_requires=['click >= 0.2', 'github3.py >= 0.7.1'],
entry_points='''
[console_scripts]
pgist=pgist:cli
''',
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
),
)

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/douglarek-pgist.git
git@api.gitlife.ru:oschina-mirror/douglarek-pgist.git
oschina-mirror
douglarek-pgist
douglarek-pgist
master