-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 803 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
import textwrap
setup(
name='python-actionkit',
version='0.1',
author='Nick Catalano',
packages=['actionkit',],
url='https://github.com/neworganizing/python-actionkit',
license='APACHE',
description="python-actionkit is a python interface to the ActionKit ECRM. The goal is to provide simple access to ActionKid via the the REST and XML-RPC APIs as well as the Django ORM",
long_description=textwrap.dedent(open('README.rst', 'r').read()),
install_requires=[
'requests',
],
keywords = "python actionkit",
classifiers=['Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP'],
)