|
33 | 33 | raise RuntimeError('Cannot find version information') |
34 | 34 |
|
35 | 35 | setup( |
36 | | - name="github3.py", |
37 | | - version=__version__, |
38 | | - description=("Python wrapper for the GitHub API" |
39 | | - "(http://developer.github.com/v3)"), |
40 | | - long_description="\n\n".join([open("README.rst").read(), |
41 | | - open("HISTORY.rst").read()]), |
42 | | - license=open('LICENSE').read(), |
43 | | - author="Ian Cordasco", |
44 | | - author_email="graffatcolmingov@gmail.com", |
45 | | - url="https://github3py.readthedocs.org", |
46 | | - packages=packages, |
47 | | - package_data={'': ['LICENSE', 'AUTHORS.rst']}, |
48 | | - include_package_data=True, |
49 | | - install_requires=requires, |
50 | | - classifiers=[ |
51 | | - 'Development Status :: 4 - Beta', |
52 | | - 'License :: OSI Approved', |
53 | | - 'Intended Audience :: Developers', |
54 | | - 'Programming Language :: Python', |
55 | | - 'Programming Language :: Python :: 2', |
56 | | - 'Programming Language :: Python :: 2.6', |
57 | | - 'Programming Language :: Python :: 2.7', |
58 | | - 'Programming Language :: Python :: 3', |
59 | | - 'Programming Language :: Python :: 3.2', |
60 | | - 'Programming Language :: Python :: Implementation :: CPython', |
61 | | - ], |
62 | | - ) |
| 36 | + name="github3.py", |
| 37 | + version=__version__, |
| 38 | + description=("Python wrapper for the GitHub API" |
| 39 | + "(http://developer.github.com/v3)"), |
| 40 | + long_description="\n\n".join([open("README.rst").read(), |
| 41 | + open("HISTORY.rst").read()]), |
| 42 | + license=open('LICENSE').read(), |
| 43 | + author="Ian Cordasco", |
| 44 | + author_email="graffatcolmingov@gmail.com", |
| 45 | + url="https://github3py.readthedocs.org", |
| 46 | + packages=packages, |
| 47 | + package_data={'': ['LICENSE', 'AUTHORS.rst']}, |
| 48 | + include_package_data=True, |
| 49 | + install_requires=requires, |
| 50 | + classifiers=[ |
| 51 | + 'Development Status :: 5 - Production/Stable', |
| 52 | + 'License :: OSI Approved', |
| 53 | + 'Intended Audience :: Developers', |
| 54 | + 'Programming Language :: Python', |
| 55 | + 'Programming Language :: Python :: 2', |
| 56 | + 'Programming Language :: Python :: 2.6', |
| 57 | + 'Programming Language :: Python :: 2.7', |
| 58 | + 'Programming Language :: Python :: 3', |
| 59 | + 'Programming Language :: Python :: 3.2', |
| 60 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 61 | + ], |
| 62 | + ) |
0 commit comments