forked from gEAPA/pySFA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.16 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='pysfa',
version='0.8',
description='A Python Package for Stochastic Frontier Analysis',
long_description_content_type="text/markdown",
long_description=README,
license='MIT',
packages=find_packages(),
author='Sheng Dai, Zhiqiang Liao',
author_email='sheng.dai@utu.fi',
keywords=['SFA', 'MLE', 'TE'],
url='https://github.com/gEAPA/pySFA',
download_url='https://pypi.org/project/pysfa/',
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
package_data={'pysfa': ['data/*.csv']},
)
install_requires = [
'numpy>=1.19.2',
'pandas>=1.1.3',
'scipy>=1.5.2',
'scikit-learn>=1.2.2',
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)