-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
45 lines (40 loc) · 1.32 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
43
44
45
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
dependencies = [
'pandas>=0.16.0',
'numpy>=1.9.2',
'scipy',
]
setup(name='econtools',
version='0.3.2',
description='Econometrics and other tools',
long_description=readme(),
long_description_content_type="text/markdown",
url=r'http://www.danielmsullivan.com/econtools',
author='Daniel M. Sullivan',
# author_email='',
packages=find_packages(),
install_requires=dependencies,
tests_require=[
'pytest',
],
include_package_data=True, # To copy stuff in `MANIFEST.in`
package_data={'econtools': ["py.typed"]},
zip_safe=False,
license='BSD',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Sociology',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
]
)