This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (48 loc) · 1.49 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="flamapy-fm-dist",
version="1.6.0.dev0",
author="Flamapy",
author_email="[email protected]",
description="Flamapy feature model is a distribution of the flama framework containing all plugins required to analyze feature models. It also offers a richier API and a complete command line interface and documentation.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flamapy/flamapy-feature-model",
packages=setuptools.find_namespace_packages(include=['flamapy.*']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
install_requires=[
"wheel",
"Flask",
"gunicorn",
"flamapy~=1.6.0.dev0",
"flamapy-fm~=1.6.0.dev0",
"flamapy-sat~=1.6.0.dev0",
"flask-swagger-ui",
"flask-restplus",
"pytest",
"flask_cors",
"flasgger",
"Fire"
],
extras_require={
'dev': [
'pytest',
'pytest-mock',
'prospector',
'mypy',
'coverage',
]
},
entry_points={
'console_scripts': [
'flamapy-fm-cli = flamapy.interfaces.command_line:flama_fm',
],
},
)