forked from maciej-gol/tenant-schemas-celery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (32 loc) · 1008 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open('VERSION', 'rb') as v:
version = v.read().decode().strip()
with open('README.md', 'rb') as ld:
long_description = ld.read().decode().strip()
setup(
author='Maciej Gol',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Programming Language :: Python',
],
description='Celery integration for django-tenant-schemas and django-tenants',
install_requires=[
'celery==4.4.7',
],
packages=find_packages(),
python_requires=">=3.6",
name='tenant-schemas-celery',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/maciej-gol/tenant-schemas-celery',
version=version,
)