-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·45 lines (41 loc) · 1.36 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="uscensus",
version="0.3.0",
packages=find_packages(),
description="US Census API discovery wrappers",
long_description="""This module fetches metadata for the Census Data API to make it easier to find relevant data sets and variables to query, and returns data as a Pandas dataframe.""",
license="Apache Software License 2.0",
keywords="census demographics economics data api discovery",
url="https://github.com/nkrishnaswami/uscensus",
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'aiosqlite',
'aiotools',
'docutils>=0.3',
'geopandas',
'httpx>=0.17.0',
'httpx_caching',
'pandas',
'pymongo',
'pytest',
'pytest-asyncio',
'shapely',
'sqlalchemy[asyncio]',
'whoosh',
],
author="Natarajan Krishnaswami",
author_email="[email protected]",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Sociology',
'Topic :: Scientific/Engineering :: GIS',
],
)