-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (38 loc) · 1.27 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
from setuptools import setup, find_packages
setup(
name='django-sage-painless',
packages=find_packages(exclude=['tests*']),
package_data={'sage_painless/templates': ['*.jinja']},
include_package_data=True,
version='1.14.3',
description='A handy tool for generating Django-based backend projects without coding. On the other hand, '
'it is a code generator of the Django framework.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Sage Team',
author_email='mail@sageteam.org',
url='https://github.com/sageteam-org/django-sage-painless',
download_url='https://github.com/sageteam-org/django-sage-painless/archive/refs/tags/1.5.0.tar.gz',
keywords=[
'django', 'python', 'generate',
'code generator', 'django rest framework',
'nginx', 'redis', 'rabbitmq', 'docker', 'gunicorn', 'automation'],
install_requires=[
'Django',
'django-redis',
'django-filter',
'redis',
'drf-yasg',
'django-seed',
'Faker',
'autopep8',
'django-sage-encrypt',
'django-sage-streaming',
'tox',
'coverage',
'gunicorn',
'greenlet',
'gevent',
'GitPython'
]
)