-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (38 loc) · 1.46 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
import sys, requests
from setuptools import setup
setup(
name="s1db",
version="1.0.0",
author="Max Bridgland",
author_email="mabridgland@protonmail.com",
description="S1 API Library for Python",
long_description=open('./README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/M4cs/s1db-python",
packages=['s1db'],
install_requires=['requests'],
tests_require=['unittest'],
zip_safe=True,
project_urls={
'S1': 'https://github.com/kognise/s1',
's1db-node': 'https://github.com/kognise/s1-node'
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: IronPython',
'Programming Language :: Python :: Implementation :: Jython',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Systems Administration',
'Topic :: System :: Networking',
'Topic :: Utilities',
]
)