-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 870 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='py4etrics',
version='0.1.9',
author='Tetsu HARUYAMA',
author_email='haruyama@econ.kobe-u.ac.jp',
packages=find_packages(),
package_dir={'py4etrics': './py4etrics'},
url='https://github.com/Py4Etrics/py4etrics',
license='MIT',
description='A package for py4etrics.github.io',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=['Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords=['Truncated Regression', 'Tobit Model', 'Heckit Model']
)