FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cql-python-driver/setup.py at master · CovenantSQL/cql-python-driver · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
CovenantSQL
/
cql-python-driver
Public
Notifications
You must be signed in to change notification settings
Fork
5
Star
6
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cql-python-driver
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (38 loc) · 1.31 KB
Breadcrumbs
cql-python-driver
/
setup.py
Copy path
File metadata and controls
41 lines (38 loc) · 1.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/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.5"
,
url
=
'https://github.com/CovenantSQL/cql-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"
,
"pycryptodome"
,
],
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"
,
)
Back
|
FazBrowse Home
|
New Git URL