-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
35 lines (30 loc) · 862 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
31
32
33
34
35
# coding=utf-8
import os
from setuptools import setup
def read(*fname):
with open(os.path.join(os.path.dirname(__file__), *fname)) as f:
return f.read()
try:
version = read('VERSION').strip()
except FileNotFoundError:
version = '0'
setup(
name='putio.py',
description='Python client for put.io API v2',
version=version,
author=u'Cenk Altı',
author_email='[email protected]',
url='https://github.com/cenkalti/putio.py',
py_modules=['putiopy'],
include_package_data=True,
zip_safe=True,
platforms='any',
install_requires=['requests', 'tus.py', 'six'],
license='MIT',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License',
],
)