|
1 | 1 | import io
|
2 | 2 | import sys
|
3 | 3 |
|
4 |
| - |
5 | 4 | try:
|
6 | 5 | from setuptools import setup
|
7 | 6 | except ImportError:
|
8 | 7 | from distutils.core import setup
|
9 | 8 |
|
10 | 9 | install_requires = [
|
11 |
| - 'requests >= 2.4.3', |
12 |
| - 'six' |
| 10 | + "requests >= 2.4.3", |
| 11 | + "six", |
13 | 12 | ]
|
14 | 13 |
|
15 | 14 |
|
|
18 | 17 | else:
|
19 | 18 | long_description_open = open
|
20 | 19 |
|
21 |
| -with long_description_open('README.md', encoding='utf-8') as f: |
| 20 | +with long_description_open("README.md", encoding="utf-8") as f: |
22 | 21 | long_description = f.read()
|
23 | 22 |
|
24 | 23 |
|
25 | 24 | setup(
|
26 |
| - name='easypost', |
27 |
| - version='5.1.3', |
28 |
| - description='EasyPost Shipping API Client Library for Python', |
29 |
| - author='EasyPost', |
30 |
| - author_email='support@easypost.com', |
31 |
| - url='https://easypost.com/', |
32 |
| - packages=['easypost'], |
| 25 | + name="easypost", |
| 26 | + version="6.0.0", |
| 27 | + description="EasyPost Shipping API Client Library for Python", |
| 28 | + author="EasyPost", |
| 29 | + author_email="support@easypost.com", |
| 30 | + url="https://easypost.com/", |
| 31 | + packages=["easypost"], |
33 | 32 | install_requires=install_requires,
|
34 |
| - test_suite='test', |
| 33 | + test_suite="test", |
35 | 34 | long_description=long_description,
|
36 |
| - long_description_content_type='text/markdown', |
| 35 | + long_description_content_type="text/markdown", |
37 | 36 | project_urls={
|
38 |
| - 'Docs': 'https://www.easypost.com/docs/api', |
39 |
| - 'Tracker': 'https://github.com/EasyPost/easypost-python/issues', |
40 |
| - 'Source': 'https://github.com/EasyPost/easypost-python', |
| 37 | + "Docs": "https://www.easypost.com/docs/api", |
| 38 | + "Tracker": "https://github.com/EasyPost/easypost-python/issues", |
| 39 | + "Source": "https://github.com/EasyPost/easypost-python", |
41 | 40 | },
|
42 |
| - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4', |
| 41 | + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", |
43 | 42 | classifiers=[
|
44 | 43 | "Development Status :: 5 - Production/Stable",
|
45 | 44 | "Environment :: Web Environment",
|
|
53 | 52 | "Operating System :: OS Independent",
|
54 | 53 | "License :: OSI Approved :: MIT License",
|
55 | 54 | "Topic :: Software Development :: Libraries",
|
56 |
| - ] |
| 55 | + ], |
57 | 56 | )
|
0 commit comments