-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·100 lines (82 loc) · 2.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import distutils
import subprocess
from os.path import dirname, join
from setuptools import find_packages, setup
def read(*args, **kwargs):
return open(join(dirname(__file__), *args), **kwargs).read()
class ToxTestCommand(distutils.cmd.Command):
"""Distutils command to run tests via tox with 'python setup.py test'.
Please note that in our standard configuration tox uses the dependencies in
`requirements/dev.txt`, the list of dependencies in `tests_require` in
`setup.py` is ignored!
See https://docs.python.org/3/distutils/apiref.html#creating-a-new-distutils-command
for more documentation on custom distutils commands.
"""
description = "Run tests via 'tox'."
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
self.announce("Running tests with 'tox'...", level=distutils.log.INFO)
return subprocess.call(['tox'])
exec(read('planning_poker_jira', 'version.py'))
classifiers = """\
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet
"""
install_requires = [
'django-searchable-encrypted-fields',
'jira>=2.0.0',
'planning-poker',
]
tests_require = [
'coverage',
'flake8',
'pydocstyle',
'pylint',
'pytest-django',
'pytest-cov',
'pytest-pythonpath',
'pytest',
]
setup(
name='planning-poker-jira',
version=__version__, # noqa
description='A jira extension for the planning poker app',
long_description=read('README.rst', encoding='utf-8'),
author='Rheinwerk Webteam',
author_email='webteam@rheinwerk-verlag.de',
maintainer='Rheinwerk Verlag GmbH Webteam',
maintainer_email='webteam@rheinwerk-verlag.de',
url='https://github.com/rheinwerk-verlag/planning-poker-jira',
license='BSD-3-Clause',
classifiers=[c.strip() for c in classifiers.splitlines()
if c.strip() and not c.startswith('#')],
packages=find_packages(include=['planning_poker_jira*']),
include_package_data=True,
test_suite='tests',
install_requires=install_requires,
tests_require=tests_require,
cmdclass={
'test': ToxTestCommand,
}
)