-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1019 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="PythonGithubAPI",
version="0.1.0",
author="Nicolas Mendoza",
author_email="[email protected]",
description="Library for the Github API",
long_description=open('README.rst').read(),
license="MIT License",
keywords="github api",
url="https://github.com/nicchub/",
packages=find_packages(exclude=[]),
tests_require=['python-coveralls',],
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries"
]
)