-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
82 lines (75 loc) · 2.15 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
from setuptools import find_packages, setup
PACKAGE_NAME = 'olaaf-transient'
VERSION = '0.34.0'
AUTHOR = 'Open Law Library'
AUTHOR_EMAIL = '[email protected]'
DESCRIPTION = 'Implementation of transient authentication'
KEYWORDS = 'transient authentication'
URL = 'https://github.com/openlawlibrary/OLAAF-Transient/tree/master'
with open('README.md', encoding='utf-8') as file_object:
long_description = file_object.read()
packages = find_packages()
ci_require = [
"pylint==2.3.1",
"bandit==1.6.0",
"coverage==4.5.3",
"pytest-cov==2.7.1",
]
dev_require = [
"autopep8==1.4.4",
"pylint==2.3.1",
"bandit==1.6.0",
]
tests_require = [
"pytest-django==4.*",
"pytest==6.*",
]
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
keywords=KEYWORDS,
packages=packages,
include_package_data=True,
data_files=[
('lib/site-packages/olaaf_transient', [
'./LICENSE.txt',
'./README.md'
])
],
zip_safe=False,
install_requires=[
"Django == 3.2.*",
"GitPython >= 2.1.11",
"selenium ~= 3.0",
"lxml >= 4.3",
"taf == 0.33.0",
],
extras_require={
'ci': ci_require,
'test': tests_require,
'dev': dev_require
},
tests_require=tests_require,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Software Development',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
]
)