forked from madiedinro/simple-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.03 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
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='simplech',
version='0.16.5',
author='Dmitry Rodin',
author_email='[email protected]',
license='MIT',
description='Simple ClickHouse client that simplify you interration with DBMS by using dicts as payload.',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
url='https://github.com/madiedinro/simple-clickhouse',
include_package_data=True,
install_requires=[
'ujson>=1.35,<2',
'aiohttp>=3,<4',
'pydantic>=0.18',
'arrow>=0.12.1,<1'
],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
project_urls={ # Optional
'Homepage': 'https://github.com/madiedinro/simple-clickhouse'
}
)