-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 817 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 817 Bytes
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
from setuptools import setup
setup(
name='django-system-settings',
version='1.0.0',
description='Django app for database persistent system settings',
long_description_content_type='text/x-rst',
author='Michal Kašpar',
author_email='info@coex.cz',
license='MIT',
url='https://github.com/COEXCZ/django-system-settings',
packages=["system_settings"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development"
],
install_requires=[
"django>=3.2",
"pydantic>=1.0"
],
)