forked from iron-io/iron_core_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.48 KB
/
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
36
37
38
39
40
from setuptools import setup
import sys
python3_setup = {}
if sys.version_info >= (3,):
python3_setup['use_2to3'] = True
setup(
name = "iron-core",
py_modules = ["iron_core"],
install_requires=["iso8601", "requests >= 1.1.0"],
version = "1.0.2",
description = "Universal classes and methods for Iron.io API wrappers to build on.",
author = "Iron.io",
author_email = "[email protected]",
url = "https://www.github.com/iron-io/iron_core_python",
keywords = ["Iron.io"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Iron.io common library
----------------------
This package offers common functions for Iron.io APIs and services. It does not wrap
any APIs or contain API-specific features, but serves as a common base that wrappers
may be built on. Users looking for API wrappers should instead look at
iron_worker_python and iron_worker_mq.""",
**python3_setup
)