-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.1 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
import os
from setuptools import setup, find_packages
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open("README.rst") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="rapyd_db",
version="0.0.9",
description="An opinionated lightweight wrapper around various DB backend drivers.",
long_description=readme,
author="Karthic Raghupathi",
author_email="[email protected]",
url="https://github.com/karthicraghupathi/rapyd_db",
license=license,
packages=find_packages(exclude=("tests", "docs")),
install_requires=["Cython", "six"],
extras_require={
"mysql": ["mysqlclient"],
"mongo": ["pymongo"],
"mssql": ["pymssql"],
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)