-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.19 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.19 KB
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
#!/usr/bin/env python
"""Project setup."""
from setuptools import setup, find_packages
package_version = '0.0.1'
requirements = [
'click==6.7', # CLI interface framework
'bumpversion==0.5.3', # version number management
'jira==2.0.0', # JIRA client
'wheel==0.29.0', # adds support for building wheels
'pbr>=3.0.0', # jira dependency, https://github.com/pycontribs/jira/issues/501
'marshmallow==2.16.3',
'prompt-toolkit==2.0.9'
]
requirements_tests = [
'bandit==1.4.0',
'mock==2.0.0',
'pytest==3.7.4', # tests framework used
'pylama==7.4.1', # code linter
'mccabe==0.6.1',
'pytest-cov==2.5.1',
'pylint==1.7.2',
'pycodestyle==2.3.1',
'pydocstyle==2.0.0',
]
setup(
name='jira-git-flow',
version=package_version,
author='Bartosz Lichenski',
description="Manage JIRA with simple commands",
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=requirements,
tests_require=requirements_tests,
extras_require={
'tests': requirements_tests
},
test_suite='tests',
entry_points={
'console_scripts': [
'git-flow = jira_git_flow:git_flow',
],
},
)