-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (38 loc) · 1.1 KB
/
setup.py
File metadata and controls
54 lines (38 loc) · 1.1 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# vim: set expandtab ts=4 sw=4 filetype=python fileencoding=utf8:
import os
import sys
from setuptools import find_packages, setup
# Read __version__ from version.py
with open(os.path.join(os.getcwd(), "horsemeat", "version.py")) as f:
exec(f.read())
setup(
name='horsemeat',
author="216 Software, LLC",
author_email="info@216software.com",
url="https://github.com/216software/horsemeat",
description='Web framework for the damned. The mad.',
version=__version__,
packages=find_packages(),
include_package_data=True,
# package_dir={'horsemeat': 'horsemeat'},
# install_requires=requirements,
install_requires=[
"Jinja2>=2.6",
"PyYAML>=3.10",
"Werkzeug>=0.10.1",
"decorator>=3.4.0",
"psycopg2>=2.7",
# "nose>=1.3.3",
"gunicorn",
],
# use_2to3=True,
# test_suite="horsemeat.tests",
# test_suite="nose.collector",
# test_suite="horsemeat",
classifiers=[
'Programming Language :: Python :: 3'
],
scripts=[
"horsemeat/scripts/make-frippery-project",
],
)