-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (23 loc) · 833 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name='indesign-server-client',
version='0.0.1',
description='Provides a simple wrapper for the InDesign Server SOAP service.',
license='MIT',
url='https://github.com/andrewschoen/indesign-server-client',
packages=find_packages(),
install_requires=['suds>=0.4'],
author='Andrew Schoen',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries'
]
)