-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
51 lines (48 loc) · 1.82 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
from setuptools import setup, find_packages
requirements = [
'requests',
]
with open('README.md') as f:
readme = f.read()
setup(
name='integresql-client-python',
version='0.9.2',
description='',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/msztolcman/integresql-client-python',
project_urls={
'GitHub: issues': 'https://github.com/msztolcman/integresql-client-python/issues',
'GitHub: repo': 'https://github.com/msztolcman/integresql-client-python',
},
download_url='https://github.com/msztolcman/integresql-client-python',
author='Marcin Sztolcman',
author_email='[email protected]',
license='MIT',
zip_safe=False,
include_package_data=True,
packages=find_packages(),
python_requires='>=3.8',
install_requires=requirements,
# see: https://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Database',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Testing :: BDD',
'Topic :: Software Development :: Testing :: Mocking',
'Topic :: Software Development :: Testing :: Unit',
]
)