forked from numan/chargify-python
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 839 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 839 Bytes
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
from setuptools import setup
setup(
name='chargify-python',
version='0.1',
url='http://github.com/hindsightlabs/chargify-python',
license='MIT',
author='Steven Wei',
author_email='steve@hindsightlabs.com',
description='A Chargify API client written in Python.',
long_description = open("README.md").read(),
py_modules=['chargify'],
zip_safe=False,
platforms='any',
test_suite='test_chargify.suite',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)