-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 923 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 923 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="psycho",
version="0.0.8",
description="An ultra simple wrapper for Python psycopg2 with very basic functionality",
author="Scott Clark",
author_email="scott@usealloy.io",
packages=['psycho'],
download_url="http://github.com/usealloy/psycho",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: Software Development :: Libraries"
],
install_requires=["psycopg2"]
)