-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (34 loc) · 1008 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
33
34
35
36
37
from setuptools import setup
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'innov'))
from config import __version__, __github_username__, __github_reponame__
url = 'https://github.com/' + __github_username__ + '/' + __github_reponame__
setup(
name='innov',
version=__version__,
url=url,
license='Apache 2.0',
author='Max Solutions, Co',
packages=['innov'],
author_email='[email protected]',
description='Python SDK for the Max Solutions Co API',
install_requires=[
'requests>=2.11.1',
'simplejson>=3.16.0',
#'pytest>=4.3.0'
],
#setup_requires=["pytest-runner"],
#tests_require=["pytest"],
classifiers=[
'Intended Audience :: Developers',
'Operating system :: OS Independent',
'Programming language :: Python',
'Topic :: Software development :: Libraries :: Python Modules'
],
keywords=[
'sdk',
'invoice',
'subscription'
]
)