-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 917 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='netsuite-db-connector',
version='0.3.1',
author='Siva Narayanan',
author_email='siva@fyle.in',
description='Connects NetSuite to a database connector to transfer information to and fro',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['netsuite', 'api', 'python', 'sdk', 'sqlite'],
url='https://github.com/fylein/netsuite-db-connector',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=['netsuitesdk==1.12.0'],
classifiers=[
'Topic :: Internet :: WWW/HTTP',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)