-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (38 loc) · 973 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="openfisca-us-data",
version="0.1.4",
description=(
"A Python package to manage OpenFisca-US-compatible microdata"
),
url="http://github.com/PolicyEngine/openfisca-us-data",
author="Nikhil Woodruff",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
"pandas",
"pathlib",
"tqdm",
"tables",
"h5py",
"synthimpute",
"pytest",
"pytest-dependency",
"requests",
],
extras_require={
"dev": [
"autopep8",
"black",
"setuptools",
"wheel",
"openfisca-us",
"pyyaml",
],
},
entry_points={
"console_scripts": ["openfisca-us-data=openfisca_us_data.cli:main"],
},
include_package_data=True,
package_data={"": ["openfisca_us_data/datasets/ce/*.yaml"]},
)