forked from objectrocket/python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (34 loc) · 1.12 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·38 lines (34 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
"""Setup script for ObjectRocket Python client."""
from setuptools import find_packages
from setuptools import setup
VERSION = ('0', '4', '6')
__version__ = '.'.join(VERSION)
with open('README.md') as f:
readme = f.read()
with open('requirements/prod.txt') as f:
requirements = f.read()
setup(
author='ObjectRocket Engineering Team',
description='ObjectRocket Python Client',
include_package_data=True,
install_requires=requirements,
long_description=readme,
name='objectrocket',
packages=find_packages(exclude=['tests*']),
url='https://github.com/objectrocket/python-client/',
version=__version__,
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Database'
)
)