forked from robin-vjc/nsopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 744 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 744 Bytes
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
from setuptools import setup, find_packages
# with open('./requirements.txt') as f:
# required = f.read().splitlines()
REQUIRES = [
'colorama >= 0.3.7',
'numpy >= 1.11.2',
'pandas >= 0.19.0',
'python-dateutil >= 2.5.3',
'pytz >= 2016.7',
'six >= 1.10.0',
]
setup(
name='nsopy',
version='1.52',
description='Non-smooth optimization for Python',
author='Robin Vujanic',
author_email='vjc.robin@gmail.com',
install_requires=REQUIRES,
url='https://github.com/robin-vjc/nsopy', # use the URL to the github repo
download_url='https://github.com/robin-vjc/nsopy/archive/1.51.tar.gz',
keywords=['non-smooth', 'distributed', 'optimization', 'python'],
packages=find_packages(),
)