-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 loc) · 1.19 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
with open("censuscoding/VERSION") as f:
version = f.read().strip()
setup(
name="censuscoding",
author="Mark Howison",
author_email="mhowison@ripl.org",
version=version,
url="https://github.com/ripl-org/censuscoding",
description="Censuscoding: determine the Census blockgroup for a street address",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: Free for non-commercial use",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering"
],
provides=["censuscoding"],
install_requires=[
"pandas",
"usaddress"
],
packages=find_packages(),
package_data={"censuscoding": ["VERSION", "data/*.csv"]},
python_requires=">=3.7,<3.10",
entry_points={
"console_scripts": [
"censuscoding = censuscoding.__main__:main"
]
}
)