-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 870 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 870 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, find_packages
setup(
name='sageone-api-client',
version='0.0.2',
description='Sage One API Client',
author='Max Naude',
author_email='maxnaude@gmail.com',
url='https://github.com/maxnaude/sageone-api-client',
packages=find_packages(),
dependency_links=[],
install_requires=['hammock==0.2.4'],
test_suite='nose.collector',
tests_require=['nose', 'responses'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)