-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
30 lines (26 loc) · 898 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
30
#!/usr/bin/env python
import os
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.4',
description='File transport adapter for Requests',
author='David Shea',
author_email='[email protected]',
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'
)
)