This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
60 lines (53 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
__copyright__ = "2017 Oleksii Semeshchuk"
__license__ = "License: MIT, see LICENSE."
'''
setup
_____
'''
from setuptools import setup
import unittest
DESCRIPTION = 'Python client for NEM NIS API (https://nemproject.github.io)'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Framework :: AsyncIO',
]
def test_suite():
loader = unittest.TestLoader()
suite = loader.discover('test', pattern='test_*.py')
return suite
setup(
name='nis-python-client',
version='0.0.9',
description=DESCRIPTION,
classifiers=CLASSIFIERS,
author='semolex (Oleksii Semeshchuk)',
author_email='semolex@live.com',
packages=['nemnis'],
url='https://github.com/semolex/nis-python-client',
license='MIT',
test_suite='setup.test_suite',
zip_safe=True,
install_requires=[
'requests==2.20.0',
'six',
],
test_requires=[
'requests-mock==1.4.0',
],
)