-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
42 lines (38 loc) · 1.34 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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='pystoned',
version='0.7.4',
description='A Python Package for Convex Regression and Frontier Estimation',
long_description_content_type="text/markdown",
long_description=README,
license='GPLv3',
packages=find_packages(),
author='Sheng Dai, Yu-Hsueh Fang, Chia-Yen Lee, Timo Kuosmanen',
author_email='sheng.dai@zuel.edu.cn',
keywords=['StoNED', 'CNLS', 'CER', 'CQR', 'Z-variables', 'CNLSG'],
url='https://github.com/ds2010/pyStoNED',
download_url='https://pypi.org/project/pystoned/',
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
package_data={'pystoned': ['data/*.csv']},
)
install_requires = [
'pyomo>=6.8.0',
'pandas>=1.1.3',
'numpy>=1.19.2',
'scipy>=1.5.2',
'matplotlib>=3.5.1',
'mosek>=10.1.13',
'openpyxl>=3.1.2',
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)