forked from unitedstates/python-us
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 1000 Bytes
/
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
from setuptools import setup, find_packages
long_description = open("README.rst").read()
setup(
name="us-aidentified",
version="3.0.2",
author="Jeremy Carbaugh",
author_email="[email protected]",
url="https://github.com/dgilmanAIDENTIFIED/python-us",
description="US state meta information and other fun stuff",
long_description=long_description,
license="BSD",
packages=find_packages(),
include_package_data=True,
install_requires=["jellyfish<1.0"],
entry_points={"console_scripts": ["states = us.cli.states:main"]},
platforms=["any"],
classifiers=[
# N.B. 3.6 is untested and should be dropped
# in coming releases.
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)