-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
35 lines (32 loc) · 1.38 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
from setuptools import setup
import sys
setup(
name = "iron-core",
py_modules = ["iron_core"],
install_requires=["requests >= 1.1.0", "python-dateutil"],
version = "1.2.0",
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.""",
)