-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·40 lines (36 loc) · 1013 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='celerystar',
version='0.0.2',
url='http://gerenciagram.com.br',
license='MIT',
description='Celery based task framework with dependency injection',
author=['Pedro Lacerda', 'Tassio Guimarães'],
author_email='[email protected]',
packages=find_packages(),
package_data={
'celerystar': ['static/*']
},
install_requires=[
'celery>=4.1.1<5',
'dataclasses',
# 'apistar==0.4.3',
'coreapi>=2.3.3<3',
'jinja2>=2.10<3',
'pytest>=3.6.0<4',
'requests>=2.18.4<3',
'werkzeug>=0.14.1<1',
'whitenoise>=3.3.1<4'
],
tests_require=[
'pytest'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Networking',
'Programming Language :: Python :: 3.6',
],
)