-
Notifications
You must be signed in to change notification settings - Fork 90
/
setup.py
51 lines (47 loc) · 1.6 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
46
47
48
49
50
51
from setuptools import setup, find_packages
import os
# Dynamically calculate the version based on moderation.VERSION.
version = __import__('moderation').__version__
tests_require = [
'django>=2.2',
'django-webtest',
'webtest',
'pillow',
]
install_requires = ['django>=2.2']
setup(
name='django-moderation',
version=version,
description='Generic Django objects moderation application',
long_description=open('README.rst').read()
+ '\n'
+ open(os.path.join('docs', 'history.rst')).read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
],
keywords='django moderation models',
author='Dominik Szopa',
author_email='[email protected]',
url='https://github.com/dominno/django-moderation',
license='BSD',
packages=find_packages('.', exclude=('tests', 'example_project')),
include_package_data=True,
tests_require=tests_require,
test_suite='runtests.runtests',
install_requires=install_requires,
zip_safe=False,
)