-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
69 lines (63 loc) · 1.73 KB
/
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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup
__authors__ = [
'"Hans Lellelid" <[email protected]>',
"Ian Will",
"Jon Renaut",
"Merlin Hughes",
"Richard Bullington-McGuire <[email protected]>",
"Adrian Porter",
"Joe Tatsuko",
]
__copyright__ = "Copyright 2015 Hans Lellelid"
version = "1.5.6"
long_description = """
The freezing saddles cycling competition website/scoreboard.
"""
install_req = [
"Flask",
"GeoAlchemy2",
"PyMySQL",
"PyYAML",
"alembic",
"arrow",
"beautifulsoup4",
"colorlog",
"envparse",
"freezing-model",
"geojson",
"gunicorn",
"marshmallow",
"marshmallow-enum",
"polyline",
"python-instagram",
"pytz",
"stravalib",
]
setup(
name="freezing-web",
version=version,
description="Freezing Saddles website component.",
long_description=long_description,
author="Hans Lellelid",
author_email="[email protected]",
# This is a workaround for https://github.com/pypa/setuptools/issues/97
packages=["freezing.web", "freezing.web.views", "freezing.web.utils"],
# packages=find_packages(include=['freezing.web.*'])
include_package_data=True,
package_data={"freezing.web": ["static/*", "templates/*"]},
license="Apache",
url="http://github.com/freezingsaddles/freezing-web",
install_requires=install_req,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
],
# zip_safe=False,
entry_points="""
[console_scripts]
freezing-server = freezing.web.runserver:main
""",
)