forked from dashea/requests-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 846 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
28
29
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requires = [line.strip() for line in open("requirements.txt").readlines()]
setup(
name="requests-file",
version="1.5.0",
description="File transport adapter for Requests",
author="David Shea",
author_email="reallylongword@gmail.com",
url="http://github.com/dashea/requests-file",
py_modules=["requests_file"],
install_requires=requires,
license="Apache 2.0",
test_suite="tests",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
)