-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 loc) · 1.32 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 gilt import __version__
from setuptools import setup, find_packages
setup(
name = "gilt-python",
version = __version__,
description = "Gilt API client",
author = "AJEllerton",
author_email = "andrewjellerton+gilt-python@gmail.com",
url = "https://github.com/aellerton/gilt-python",
keywords = ["gilt"],
install_requires = [
"simplejson >= 2.3.3",
"httplib2 >= 0.7.2",
"iso8601 >= 0.1.4",
],
packages = find_packages(),
classifiers = [
"Development Status :: 3 - Alpha",
#"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Python Gilt API
---------------
DESCRIPTION
The Gilt API allows developers access to sale and product information from gilt.com.
LICENSE
The Python Gilt API distributed under the Apache Softare License.
""" )