-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
50 lines (45 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
from setuptools import setup
setup(name='jiraburnupanddown',
version='0.2',
description='A Scrum burndown chart for Jira that also keeps track of hours spent on a separate fixed-size budget',
url='https://github.com/Griffon26/jiraburnupanddown',
author='Maurice van der Pot',
author_email='[email protected]',
license='GPLv3+',
entry_points={
'console_scripts': [
'fakejira = jiraburnupanddown.fakejira:main',
],
'gui_scripts': [
'jiraburnupanddown = jiraburnupanddown.jiraburnupanddown:main',
]
},
packages = [ 'jiraburnupanddown' ],
package_dir = {
'jiraburnupanddown' : 'src'
},
package_data = {
'jiraburnupanddown' : ['icons/document-save-as.png',
'icons/edit-copy.png']
},
install_requires=[
'numpy',
'PyQt5',
'pyqtgraph',
'python-dateutil',
'pytz',
'requests',
'tzlocal',
],
classifiers=[
# Status
'Development Status :: 3 - Alpha',
# Purpose
'Intended Audience :: Developers',
'Topic :: Software Development',
# License
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Supported python versions
'Programming Language :: Python :: 3 :: Only'
],
zip_safe=False)