-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 729 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import versioneer
setup(
name="ups-api",
description="Validate street addresses with the UPS API",
author="Eric Hutton",
author_email="huttone@colorado.edu",
url="https://github.com/mcflugen/ups",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=["click", "pandas", "requests"],
setup_requires=[],
packages=find_packages(),
entry_points={"console_scripts": ["ups=ups.cli:ups"]},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)