forked from maciej-gol/tenant-schemas-celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 918 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
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-tenants',
install_requires=[
'django-tenants',
'celery'
],
packages=find_packages(),
name='django-tenants-celery',
license='MIT',
long_description=long_description,
url='https://github.com/Lobosque/django-tenants-celery',
version=version,
)