-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (57 loc) · 2 KB
/
setup.py
File metadata and controls
63 lines (57 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# SPDX-FileCopyrightText: 2024 Henrik Sandklef
#
# SPDX-License-Identifier: GPL-3.0-or-later
import setuptools
from licomp_toolkit.config import licomp_toolkit_version
from licomp_toolkit.config import description
from licomp_toolkit.config import module_name
requirements = []
with open('requirements.txt') as f:
requirements = f.read().splitlines()
requirements_dev = []
with open('requirements-dev.txt') as f:
requirements_dev = f.read().splitlines()
with open("README.md") as f:
_long_description = f.read()
setuptools.setup(
name='licomp_toolkit',
version=licomp_toolkit_version,
author="Henrik Sanklef",
author_email="hesa@sandklef.com",
description=description.replace('\n', ' '),
long_description=_long_description,
long_description_content_type="text/markdown",
license_files=('LICENSES/GPL-3.0-or-later.txt',),
url="https://github.com/hesa/licomp-toolkit",
packages=['licomp_toolkit'],
entry_points={
"console_scripts": [
"licomp-toolkit = licomp_toolkit.__main__:main",
],
},
package_data={
f'{module_name}': ['data/*.json'],
},
install_requires=requirements,
extras_require={
'dev': requirements_dev,
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
],
python_requires='>=3.6',
)