forked from vinland-technology/flict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (56 loc) · 1.96 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
# SPDX-FileCopyrightText: 2021 Konrad Weihmann
#
# SPDX-License-Identifier: GPL-3.0-or-later
import setuptools
from flict.flictlib.flict_config import flict_version
with open("README.md") as i:
_long_description = i.read()
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()
setuptools.setup(
name="flict",
version=flict_version,
author="Henrik Sanklef",
author_email="hesa@sandklef.com",
description="FOSS License Compatibility Tool",
long_description=_long_description,
long_description_content_type="text/markdown",
license_files=('LICENSE',),
license='GPL-3.0-or-later',
url="https://github.com/vinland-technology/flict",
bugtrack_url="https://github.com/vinland-technology/flict/issues",
packages=['flict', 'flict.flictlib', 'flict.flictlib.format', 'flict.flictlib.project'],
entry_points={
"console_scripts": [
"flict = flict.__main__:main",
],
},
package_data={
'flict': ['var/*'],
},
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
],
python_requires='>=3.8',
)