-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (38 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·42 lines (38 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst', 'r') as readme_file:
readme = readme_file.read()
from orb_api import __version__
setup(
name='orb_api',
version=__version__,
description='Python wrapper for ORB API',
long_description=readme,
packages=[
'orb_api',
],
include_package_data=True,
install_requires=[
'requests>=2.0.0',
'poster==0.8.1',
],
entry_points={
'console_scripts': [
'orb_cli = orb_api.__main__:main'
]
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv3 License', # provisional
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
],
test_suite='tests',
)