-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 950 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 950 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="drunken_boat",
version='0.0.5.dev0',
author="Yohann Gabory",
author_email="yohann@gabory.fr",
description=("Performance based web framework written in python"),
license = "BSD",
keywords = "framework web performances",
url = "https://github.com/boblefrag/drunken_boat",
packages=['drunken_boat'],
long_description=read('README.rst'),
install_requires = ["werkzeug", "jinja2", "psycopg2"],
tests_require = ["pytest-codecheckers", "pytest-cov",
"pytest", "sphinx-pypi-upload"],
test_suite = "test",
test_loader = "runtests:PyTest",
scripts=['drunken_boat/bin/drunken_run.py'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)