-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (38 loc) · 1.06 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
import setuptools
with open('README.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='pytwoway',
version='0.3.21',
author='Thibaut Lamadon',
author_email='[email protected]',
description='Estimate two way fixed effect labor models',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/tlamadon/pytwoway',
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'pandas',
'numba',
'paramsdict>=0.0.3',
'bipartitepandas>=1.1.3',
'scipy',
'statsmodels',
'pyamg',
'qpsolvers',
'quadprog',
'ConfigArgParse',
'matplotlib',
'tqdm'
],
entry_points = {
'console_scripts': ['pytw=pytwoway.command_line:main'],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)