-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 1.44 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
from setuptools import setup, find_packages
__VERSION__ = "0.0.17"
requirements = [
'alembic==1.0.10',
'amqp==2.4.2',
'Click==7.0',
'decorator==4.4.0',
'itsdangerous==1.1.0',
'kombu==4.5.0',
'pbr==5.2.0',
'six==1.12.0',
'SQLAlchemy==1.3.3',
'SQLAlchemy-Utils==0.34.0',
'sqlparse==0.3.0',
'Tempita==0.5.2',
'vine==1.3.0',
'PyMySQL==0.9.3',
'redis==3.2.1',
]
tests_requirements = [
'freezegun==0.3.12',
]
setup(
name="Ammonia",
version=__VERSION__,
description="task queue",
author="george wang",
author_email="[email protected]",
url="https://github.com/GeorgeWang1994/Ammonia",
install_requires=requirements,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='runtests.collect_tests',
tests_require=tests_requirements,
entry_points={
'console_scripts': [
'ammonia=ammonia.command.start:start',
],
},
)