-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
51 lines (46 loc) · 1.45 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
46
47
48
49
50
51
"""Package setup"""
from setuptools import setup, find_packages
with open("pyesg/version.py") as f:
__version__ = None
exec(f.read(), globals()) # pylint: disable=exec-used
with open("README.md") as f:
README = f.read()
setup(
name="pyesg",
version=__version__,
description="Economic Scenario Generator for Python",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/jason-ash/pyesg",
author="Jason Ash",
author_email="jason@ashanalytics.com",
packages=find_packages(),
install_requires=["numpy", "pandas", "scipy"],
extras_require={
"dev": [
"black==19.10b0",
"coverage==5.2.1",
"hypothesis==5.24.4",
"pre-commit==2.6.0",
"pylint==2.6.0",
"mypy==0.782",
]
},
include_package_data=True,
package_data={
"pyesg": ["../README.md", "../LICENSE.md", "../MANIFEST.in", "datasets/*"]
},
python_requires=">=3.6", # f-strings
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
test_suite="tests",
zip_safe=False,
)