forked from shon/appbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 763 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 763 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
28
29
30
31
from setuptools import find_packages, setup
setup(
name="appbase",
version="0.8.1",
url="https://github.com/stckme/appbase",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
include_package_data=True,
description="Helps develop python applications",
long_description=open("README.rst").read(),
packages=find_packages(),
install_requires=[
"blinker",
"jsonschema",
"gevent",
"peewee",
"psycopg2",
"psycogreen",
"flask",
"html2text",
"redis",
"arnold",
"requests_oauthlib",
],
author="Shekhar Tiwatne",
author_email="pythonic@gmail.com",
test_suite="tests",
)