forked from unitedstates/python-us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 903 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
from setuptools import setup, find_packages
long_description = open("README.rst").read()
setup(
name="us",
version="3.0.1",
author="Jeremy Carbaugh",
author_email="[email protected]",
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(),
include_package_data=True,
install_requires=["jellyfish==0.11.2"],
entry_points={"console_scripts": ["states = us.cli.states:main"]},
platforms=["any"],
classifiers=[
"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",
],
)