-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
53 lines (48 loc) · 1.64 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
52
53
"""The general package information for respy."""
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
DESCRIPTION = (
"respy is a Python package for the simulation and estimation of a prototypical "
"finite-horizon dynamic discrete choice model."
)
EMAIL = "research-codes-respy.9b46528f81292a712fa4855ff362f40f.show-sender@streams.zulipchat.com" # noqa
README = Path("README.rst").read_text()
PROJECT_URLS = {
"Bug Tracker": "https://github.com/OpenSourceEconomics/respy/issues",
"Documentation": "https://respy.readthedocs.io/en/latest",
"Source Code": "https://github.com/OpenSourceEconomics/respy",
}
setup(
name="respy",
version="2.1.1",
description=DESCRIPTION,
long_description=DESCRIPTION + "\n\n" + README,
long_description_content_type="text/x-rst",
author="The respy Development Team",
author_email=EMAIL,
python_requires=">=3.6.0",
url="https://respy.readthedocs.io/en/latest/",
project_urls=PROJECT_URLS,
packages=find_packages(),
license="MIT",
keywords=["Economics", " Discrete Choice Dynamic Programming Model"],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
platforms="any",
package_data={
"respy": [
"tests/resources/*.csv",
"tests/resources/*.pickle",
"tests/resources/*.yaml",
"tox.ini",
]
},
include_package_data=True,
zip_safe=False,
)