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