forked from Fgerthoffert/jira-agile-velocity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.08 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
from setuptools import setup, find_packages
setup(name='jav',
version='0.1',
description="Connect to Jira REST API to collect completed story points, calculate weekly velocity, and estimate completion date",
long_description="Connect to Jira REST API to collect completed story points, calculate weekly velocity, and estimate completion date",
classifiers=[],
keywords='',
author='fgerthoffert',
author_email='contact@mail.gerthoffert.net',
url='https://github.com/Fgerthoffert/jira-agile-velocity',
license='GNU General Public License v3.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
### Required to build documentation
# "Sphinx >= 1.0",
### Required for testing
"nose",
# "coverage",
### Required to function
'cement',
],
setup_requires=[],
entry_points="""
[console_scripts]
jav = jav.cli.main:main
""",
namespace_packages=[],
)