-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 1.29 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
def read_requirements(file):
with open(file, "r") as fh:
return fh.read().splitlines()
# Read requirements from the requirements.txt file
requirements = read_requirements("requirements.txt")
# Read development requirements from the dev-requirements.txt file
dev_requirements = read_requirements("requirements-dev.txt")
setuptools.setup(
name="flamapy-rest",
version="2.0.0",
author="Flamapy",
author_email="flamapy@us.es",
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=requirements,
extras_require={
'dev': dev_requirements
}
)