-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
96 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,39 @@ | ||
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"], | ||
python_requires=">=3.6", | ||
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 = """\ | ||
LONG_DESCRIPTION = """ | ||
Iron.io common library | ||
---------------------- | ||
This package offers common functions for Iron.io APIs and services. It does not wrap | ||
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.""", | ||
may be built on. Users looking for API wrappers should instead look at | ||
iron_worker_python and iron_worker_mq. | ||
""".strip() | ||
|
||
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"], | ||
python_requires=">=3.6", | ||
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=LONG_DESCRIPTION, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters