mirror of
https://github.com/viewflow/viewflow.git
synced 2025-08-02 22:00:58 +08:00
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
import setuptools
|
|
|
|
|
|
setuptools.setup(
|
|
name='django-viewflow',
|
|
version='2.0.0b1',
|
|
author_email='kmmbvnr@gmail.com',
|
|
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=open('README.md', 'r', encoding='utf-8').read(),
|
|
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',
|
|
],
|
|
)
|