-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 709 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 709 Bytes
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
from setuptools import setup
import versioneer
setup(
name="pummeler",
author="Dougal J. Sutherland",
author_email="dougal@gmail.com",
url="https://github.com/dougalsutherland/pummeler/",
packages=["pummeler"],
package_data={"pummeler": ["data/*"]},
entry_points={"console_scripts": ["pummel = pummeler.cli:main"]},
description="Utilities for processing and analyzing ACS PUMS files.",
install_requires=[
"numpy",
"pandas~=1.0",
"pyarrow>=0.16",
"tables",
"scipy",
"scikit-learn",
"tqdm",
],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="MIT",
zip_safe=True,
)