forked from unitedstates/python-us
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 709 Bytes
/
setup.py
File metadata and controls
23 lines (21 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
from us import __appname__, __version__
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name=__appname__,
version=__version__,
author="Jeremy Carbaugh",
author_email="jcarbaugh@sunlightfoundation.com",
url='https://github.com/unitedstates/python-us',
description='US state meta information and other fun stuff',
long_description=long_description,
license='BSD',
packages=find_packages(),
package_data={'us': ['*.pkl']},
include_package_data=True,
install_requires=['jellyfish==0.5.3'],
entry_points={
'console_scripts': ['states = us.cli.states:main']},
platforms=['any'],
zip_safe=False,
)