-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
version = "0.4.1"
long_description = """
freezing-nq is the Freezing Saddles component for receiving
strava webhook events and enquing them for processing.
"""
install_reqs = [
"envparse",
"falcon",
"greenstalk",
"gunicorn",
"python-mimeparse",
"six",
"freezing-model",
"arrow",
]
setup(
name="freezing-nq",
version=version,
author="Hans Lellelid",
author_email="[email protected]",
url="http://github.com/freezingsaddles/freezing-nq",
license="Apache",
description="Freezing Saddles activity receive and enqueue worker",
long_description=long_description,
packages=["freezing.nq", "freezing.nq.api"],
install_requires=install_reqs,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
zip_safe=True,
)