forked from jjorissen52/netsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
setup_kwargs = dict(
name='netsuite',
version='0.4.0',
description='Wrapper around Netsuite SuiteTalk Web Services and Restlets',
packages=['netsuite'],
include_package_data=True,
author='Jacob Magnusson',
author_email='[email protected]',
url='https://github.com/jmagnusson/netsuite',
license='BSD',
platforms='any',
install_requires=[
'requests-oauthlib',
'zeep',
],
extras_require={
'cli': [
'argh',
'ipython',
],
'test': {
'coverage>=4.2',
'flake8>=3.0.4',
'mypy>=0.560',
'pytest>=3.0.3',
'responses>=0.5.1',
},
},
entry_points={
'console_scripts': [
'netsuite = netsuite.__main__:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
if __name__ == '__main__':
setup(**setup_kwargs)