-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.38 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 os
import setuptools
from setup_utils import get_requirements
current_dirpath = os.path.dirname(os.path.abspath(__file__))
req_filepath = os.path.join(current_dirpath, 'requirements.txt')
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
]
setuptools.setup(
name="ProMCDA",
version="1.0.2",
license='EPL v 2.0',
author="Flaminia Catalli - wetransform GmbH, Matteo Spada - Zurich University of Applied Sciences",
author_email='[email protected], [email protected]',
description='A probabilistic Multi Criteria Decision Analysis',
keywords='MCDA, robustness analysis, Monte Carlo sampling, probabilistic approach',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/wetransform-os/ProMCDA',
classifiers=classifiers,
platform=['Linux', 'MacOS', 'Windows'],
python_requires='>=3.9',
packages=['mcda'],
test_suite="tests",
install_requires=get_requirements(req_filepath)
)