-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 852 Bytes
/
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
import os.path
from setuptools import setup, find_packages
__DIR__ = os.path.abspath(os.path.dirname(__file__))
setup(
name="rawl",
version="0.3.5",
description="An ugly raw SQL postgresql db layer",
url="https://github.com/mikeshultz/rawl",
author="Mike Shultz",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords="postgresql database bindings sql",
packages=find_packages(exclude=["build", "dist"]),
package_data={"": ["README.md"]},
install_requires=[
"psycopg2>=2.7.3.2",
],
)