forked from datadesk/census-map-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.24 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
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='census-map-downloader',
version='0.0.5',
description="Easily download U.S. census maps",
long_description=read('README.rst'),
author='Los Angeles Times Data Desk',
author_email='[email protected]',
url='http://www.github.com/datadesk/census-map-downloader',
license="MIT",
packages=(
"census_map_downloader",
"census_map_downloader.geotypes",
),
install_requires=(
"geopandas",
"us",
"click"
),
entry_points="""
[console_scripts]
censusmapdownloader=census_map_downloader.cli:cmd
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
project_urls={
'Maintainer': 'https://github.com/datadesk',
'Source': 'https://github.com/datadesk/census-map-downloader',
'Tracker': 'https://github.com/datadesk/census-map-downloader/issues'
},
)