-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 808 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
from setuptools import setup, find_packages
setup(
name='AnaHiePro',
version='0.1.1',
install_requires=[
'numpy'
],
author='Oleh Danylevych',
author_email='danylevych123@gmail.com',
description='"AnaHiePro" is a module that allows solving various tasks of systems analysis using the Analytic Hierarchy Process (AHP).',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/danylevych/AnaHiePro',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
package_data={
'your_package_name': ['assets/img/*'],
},
python_requires='>=3.6',
)