-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
30 lines (28 loc) · 919 Bytes
/
setup.cfg
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
[metadata]
name = pyCensus
version = 0.0.2
author = Aaron Finocchiaro
author_email = [email protected]
description = A Python library to parse and data from the US Census API
long_description = file: README.md, LICENSE.txt
long_description_content_type = text/markdown
url = https://github.com/a-finocchiaro/pyCensus
download_url = https://github.com/a-finocchiaro/pyCensus/archive/refs/tags/v_002.tar.gz
keywords = Pandas, Census, Bureau
classifiers=
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages =
pyCensus
install_requires =
pandas
requests
python_requires= >=3.7
[options.entry_points]
console_scripts =
census-endpoint = pyCensus.endpoints:main
census-variables = pyCensus.search:get_variables
census-geography = pyCensus.search:get_geography
census-groups = pyCensus.search:get_groups