-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (29 loc) · 1.06 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
#!/usr/bin/env python3
import os
import setuptools
from distutils.core import setup
with open("README.md") as f:
long_description = f.read()
with open(os.path.join("EasyMCDM", "version.txt")) as f:
version = f.read().strip()
setup(
name = "EasyMCDM",
version = version,
description = "A easy to use Multi-Criteria Decision-Making (MCDM) toolkit which propose implementations for Electre, Promethee and much more.",
long_description = long_description,
long_description_content_type = "text/markdown",
author = "Yanis Labrak & Others",
author_email = "yanis.labrak@univ-avignon.fr",
packages = setuptools.find_packages(),
package_data = {
"EasyMCDM": [
"version.txt"
]
},
install_requires = [
"prettytable",
],
python_requires = ">=3.6",
url = "https://EasyMCDM.github.io/",
keywords = ["python","MCDM","toolkit","easy","Multiple-criteria decision analysis","Multi-Criteria Decision-Making","methods","Multi-Criteria Decision-Making (MCDM)"],
)