forked from Stackdriver/stackdriver-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (38 loc) · 1.2 KB
/
setup.py
File metadata and controls
46 lines (38 loc) · 1.2 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
import os
import sys
from pip.req import parse_requirements
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = ['stackdriver']
requires = ["requests>=2.2"]
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='stackdriver',
version='0.2.1',
description='Stackdriver Client APIs for Python',
long_description=readme + '\n\n', # TODO: add a history file
author='John (J5) Palmieri',
author_email='j5@stackdriver.com',
url='http://github.com/Stackdriver/stackdriver-py',
packages= packages,
package_data={'': ['LICENSE']},
package_dir={'stackdriver': 'stackdriver'},
install_requires=requires,
license=license,
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
),
)