forked from CovenantSQL/cql-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.29 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.29 KB
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
#!/usr/bin/env python
import io
from setuptools import setup, find_packages
with io.open('./README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name="PyCovenantSQL",
version="0.1.3",
url='https://github.com/CovenantSQL/python-driver/',
project_urls={
"Documentation": "https://pycovenantsql.readthedocs.io/",
},
description='Pure Python CovenantSQL Driver',
long_description=readme,
packages=find_packages(exclude=['tests*', 'pycovenantsql.tests*']),
install_requires=[
"requests",
"arrow",
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Topic :: Database',
],
keywords=("CovenantSQL","driver","database"),
author = "laodouya",
author_email = "jin.xu@CovenantSQL.io",
license = "Apache 2.0 Licence",
)