-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·38 lines (34 loc) · 1018 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
34
35
36
37
38
import io
import os
from setuptools import setup, find_packages
os.environ['CVXOPT_BUILD_GLPK'] = '1'
readme_file = os.path.join(os.path.dirname(__file__), 'README.md')
with io.open(readme_file, mode='r', encoding='utf-8') as f:
README = f.read()
INSTALL_REQUIRES = [
'matplotlib',
'numpy',
'cvxopt',
'mpmath',
'pandas'
]
setup(
name='intvalpy',
version='1.6.6',
description='IntvalPy - a Python interval computation library',
long_description=README,
long_description_content_type='text/markdown',
license='MIT License',
keywords=[
'interval',
'inequality visualization',
'optimal solutions',
'math',
'machine learning'
],
author='Андросов Артем Станиславович, Шарый Сергей Петрович',
author_email='artem.androsov@gmail.com, shary@ict.nsc.ru',
url='https://github.com/AndrosovAS/intvalpy',
packages=find_packages(),
install_requires=INSTALL_REQUIRES
)