-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (36 loc) · 1.21 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
import os
from distutils.core import setup
setup(
name="pivotaltracker",
packages=["pivotaltracker"],
version="0.0.4",
license="BSD",
author="Matt Pizzimenti",
author_email="mjpizz+pivotaltracker@gmail.com",
url="http://pypi.python.org/pypi/pivotaltracker/",
install_requires=["PyYAML"],
# install_recommends=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Utilities",
"Environment :: Console",
],
description="pivotaltracker is a Pythonic wrapper around the PivotalTracker API",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
entry_points='''
[console_scripts]
pt = pivotaltracker.tool:run
''',
# zip_safe=False,
# cmdclass=cmdclass,
# ext_modules=ext_modules,
)