forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.37 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
import setuptools
README = open("README.md", "r", encoding="utf-8").read()
setuptools.setup(
name="django-viewflow",
version="2.0.0b8",
author_email="[email protected]",
author="Mikhail Podgurskiy",
description="Reusable library to build business applications fast",
include_package_data=True,
keywords=["django", "admin", "workflow", "fsm", "bpm", "bpmn"],
license="AGPL",
# long_description_content_type="text/markdown",
# long_description=README,
packages=setuptools.find_packages(exclude=["tests*"]),
python_requires=">=3.7",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
install_requires=[
"Django>=3.2",
"django-filter>=2.3.0",
],
)