-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
37 lines (34 loc) · 1.12 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
from setuptools import setup, find_packages
import sys
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 2.4
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Topic :: Software Development :: Object Brokering""".split("\n")
if sys.version_info >= (2, 6):
dateutil_version = '>=1.4,<2.0'
else:
dateutil_version = '>=1.4,<1.5'
setup(
name='Scio',
version='0.12.0',
author_email='oss@leapfrogdevelopment.com',
url='http://bitbucket.org/leapfrogdevelopment/scio/overview',
description='Scio is a humane SOAP client',
install_requires=['lxml>=2.2', 'Jinja2', 'python-dateutil%s' % dateutil_version],
tests_require=['nose>=1.0', 'Sphinx>=1.0'],
packages=find_packages(),
include_package_data=True,
classifiers=CLASSIFIERS,
entry_points = {
'console_scripts': [
'scio_generate_client = scio.gen:main',
],
}
)