-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
45 lines (40 loc) · 1.39 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
from codecs import open
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open('README.md') as fh:
long_description = fh.read()
try:
from django_scopes import version
except ImportError:
version = '?'
setup(
name='django-scopes',
version=version,
description='Scope querys in multi-tenant django applications',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/raphaelm/django-scopes',
author='Raphael Michel',
author_email='[email protected]',
license='Apache License 2.0',
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
"Framework :: Django",
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
],
keywords='json database models',
install_requires=["Django>=3.2"],
packages=find_packages(exclude=['tests']),
include_package_data=True,
)