-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
33 lines (30 loc) · 970 Bytes
/
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
import os
import setuptools
with open('README.md') as fh:
long_description = fh.read()
version = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'ahpy', '__version__.py')) as fp:
exec(fp.read(), version)
setuptools.setup(
name="ahpy",
version=version['__version__'],
author="Philip Griffith",
author_email="philip.griffith@gmail.com",
description="A Python implementation of the Analytic Hierarchy Process",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PhilipGriffith/AHPy",
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='AHP, MCDM, MCDA',
install_requires=[
'numpy',
'scipy'
],
python_requires='>=3.7, <4'
)