-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
58 lines (49 loc) · 1.68 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
"""
Local testing:
pip install -e .
Upload to PyPI
python setup.py sdist
twine upload --repository pypitest dist/siridb-connector-X.X.X.tar.gz
twine upload --repository pypi dist/siridb-connector-X.X.X.tar.gz
"""
from distutils.core import setup
import setuptools
from siridb import __version__
VERSION = __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='siridb-connector',
packages=[
'siridb',
'siridb.connector',
'siridb.connector.lib'],
version=VERSION,
description='SiriDB Connector',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jeroen van der Heijden',
author_email='[email protected]',
url='https://github.com/SiriDB/siridb-connector',
download_url='https://github.com/SiriDB/'
'siridb-connector/tarball/{}'.format(VERSION),
keywords=['siridb', 'connector', 'database', 'client'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Database',
'Topic :: Software Development'
],
install_requires=['qpack']
)