-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·41 lines (36 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/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.3',
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',
),
)