forked from cityofaustin/knackpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 939 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
28
29
30
31
32
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author='John Clary',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: Public Domain',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
description='A Python API wrapper for interacting with Knack applications.',
long_description=long_description,
install_requires=[
'arrow',
'requests'
],
keywords='knack api api-client integration python',
license='Public Domain',
name='knackpy',
packages=['knackpy'],
test_suite='nose.collector',
tests_require=['nose'],
url='http://github.com/cityofaustin/knackpy',
version='0.0.12',
)