-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
50 lines (48 loc) · 1.79 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
50
from setuptools import find_packages, setup
PROJECT_URL = 'https://github.com/melexis/jira-juggler'
setup(
name='mlx.jira_juggler',
use_scm_version={
'write_to': 'src/mlx/__version__.py'
},
url=PROJECT_URL,
author='Jasper Craeghs',
author_email='[email protected]',
description='A Python script for extracting data from Jira, and converting to TaskJuggler (tj3) output',
long_description=open("README.rst").read(),
long_description_content_type='text/x-rst',
zip_safe=False,
license='Apache License, Version 2.0',
platforms='any',
packages=find_packages('src'),
package_dir={'': 'src'},
entry_points={'console_scripts': ['jira-juggler = mlx.jira_juggler:entrypoint']},
include_package_data=True,
install_requires=['jira>=3.1.1', 'python-dateutil>=2.8.0,<3.0', 'natsort>=7.1.0,<8.0', 'python-decouple'],
setup_requires=['setuptools-scm>=6.0.0,<8.0'],
python_requires='>=3.7',
namespace_packages=['mlx'],
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords=[
'Jira',
'taskjuggler',
'gantt',
'project planning',
'planning',
'software engineering',
],
)