-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
46 lines (40 loc) · 1.29 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
41
42
43
44
45
46
import os
import re
from setuptools import setup, find_packages
def get_version():
init = open(os.path.join(os.path.dirname(__file__), 'pyveloedi',
'__init__.py')).read()
return re.search(r"""__version__ = '([0-9.]*)'""", init).group(1)
setup(
name="pyveloedi",
url="http://github.com/uvc-ingenieure/pyveloedi",
author="Max Holtzberg",
author_email="[email protected]",
maintainer="Max Holtzberg",
maintainer_email="[email protected]",
description="Library for communicating with Veloconnect webservices.",
long_description="""
pyveloedi
=========
Library for connecting to Veloconnect webservices.
Features:
* Supports URL and XML-Post bindings
* Searching catalog and placing orders
* Winora support with same interface
* MIT License
""",
license="MIT License",
version=get_version(),
packages=find_packages(exclude=['examples']),
install_requires=[
"lxml >= 2.0"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
])