Skip to content

Commit a0c2f68

Browse files
committed
initial commit
1 parent ecc62b7 commit a0c2f68

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

setup.py

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
from setuptools import setup, find_packages
2+
import os
3+
4+
classifiers = [
5+
'Development Status :: 5 - Production/Stable',
6+
'Intended Audience :: Education',
7+
'Operating System :: Microsoft :: Windows :: Windows 10',
8+
'License :: OSI Approved :: MIT License',
9+
'Programming Language :: Python :: 3'
10+
]
11+
12+
here = os.path.abspath(os.path.dirname(__file__))
13+
with open(os.path.join(here, 'README.md'), encoding='utf-8') as fs:
14+
long_description = fs.read()
15+
16+
setup(
17+
name='USPS-Webtools',
18+
version='0.0.1',
19+
description='Simple API for the USPS Webtools. No Authentication Required',
20+
long_description=long_description,
21+
long_description_content_type='text/markdown',
22+
url='https://github.com/ibbeyo/USPS-Webtools',
23+
author='Ibbeyo',
24+
license='MIT',
25+
classifiers=classifiers,
26+
keywords=['usps', 'mail', 'package', 'tracking', 'zipcode'],
27+
packages=find_packages(),
28+
install_requires=[
29+
'beautifulsoup4==4.9.3',
30+
'bs4==0.0.1',
31+
'certifi==2020.12.5',
32+
'chardet==4.0.0',
33+
'fake-useragent==0.1.11',
34+
'idna==2.10',
35+
'requests==2.25.1',
36+
'soupsieve==2.2.1',
37+
'urllib3==1.26.4'
38+
]
39+
)

0 commit comments

Comments
 (0)