forked from pswaminathan/t1-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (43 loc) · 1.31 KB
/
setup.py
File metadata and controls
51 lines (43 loc) · 1.31 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
def fread(fname):
with open(os.path.join(CURRENT_DIR, fname)) as f:
return f.read()
packages = [
'terminalone',
'terminalone.models',
'terminalone.utils',
'terminalone.vendor',
]
requirements = ['requests>=2.3.0']
setup(
name='TerminalOne',
version='1.0.4',
author='Prasanna Swaminathan',
author_email='prasanna@mediamath.com',
url='http://www.mediamath.com',
description="A package for interacting with MediaMath's TerminalOne API.",
long_description=fread('README.rst'),
packages=packages,
install_requires=requirements,
platforms=['any'],
license=fread('LICENSE'),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
],
test_suite="tests",
)