74 lines
2.2 KiB
Python
74 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
from setuptools import setup
|
|
|
|
if sys.argv[-1].lower() in ("submit", "publish"):
|
|
os.system("python setup.py bdist_wheel sdist upload")
|
|
sys.exit()
|
|
|
|
|
|
def get_version():
|
|
version = ''
|
|
with open('requests_toolbelt/__init__.py', 'r') as fd:
|
|
reg = re.compile(r'__version__ = [\'"]([^\'"]*)[\'"]')
|
|
for line in fd:
|
|
m = reg.match(line)
|
|
if m:
|
|
version = m.group(1)
|
|
break
|
|
return version
|
|
|
|
__version__ = get_version()
|
|
|
|
if not __version__:
|
|
raise RuntimeError('Cannot find version information')
|
|
|
|
|
|
packages = [
|
|
'requests_toolbelt',
|
|
'requests_toolbelt.adapters',
|
|
'requests_toolbelt.auth',
|
|
'requests_toolbelt.downloadutils',
|
|
'requests_toolbelt.multipart',
|
|
'requests_toolbelt.threaded',
|
|
'requests_toolbelt.utils',
|
|
]
|
|
|
|
setup(
|
|
name="requests-toolbelt",
|
|
version=__version__,
|
|
description="A utility belt for advanced users of python-requests",
|
|
long_description="\n\n".join([open("README.rst").read(),
|
|
open("HISTORY.rst").read()]),
|
|
long_description_content_type="text/x-rst",
|
|
license='Apache 2.0',
|
|
author='Ian Cordasco, Cory Benfield',
|
|
author_email="graffatcolmingov@gmail.com",
|
|
url="https://toolbelt.readthedocs.io/",
|
|
packages=packages,
|
|
package_data={'': ['LICENSE', 'AUTHORS.rst']},
|
|
include_package_data=True,
|
|
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
|
install_requires=['requests>=2.0.1,<3.0.0'],
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Intended Audience :: Developers',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
],
|
|
)
|