-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (33 loc) · 1.26 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
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 development requirements from the dev-requirements.txt file
dev_requirements = read_requirements("requirements-dev.txt")
setuptools.setup(
name="flamapy-fw",
version="2.0.1",
author="Flamapy",
author_email="[email protected]",
description="Flamapy is a Python-based AAFM framework that takes into consideration previous AAFM tool designs and enables multi-solver and multi-metamodel support for the integration of AAFM tooling on the Python ecosystem.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flamapy/core",
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',
extras_require={
'dev': dev_requirements
},
entry_points={
'console_scripts': [
'flamapy = flamapy.commands:flamapy_cli',
],
},
)