-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
61 lines (51 loc) · 1.71 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
52
53
54
55
56
57
58
59
60
61
import os
from setuptools import find_packages
from setuptools import setup
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
try:
file = open(path, encoding="utf-8")
except TypeError:
file = open(path)
return file.read()
def get_install_requires():
install_requires = ["Django", "six"]
try:
pass
except ImportError:
install_requires.append("importlib")
try:
pass
except ImportError:
install_requires.append("ordereddict")
return install_requires
setup(
name="django-jet-calm",
version="5.3.1",
description="Modern template for Django-4 admin interface with improved functionality",
long_description=read("README.rst"),
author="Akshara Hegde",
author_email="[email protected]",
url="https://github.com/aksharahegde/django-jet-3-calm",
packages=find_packages(),
license="AGPLv3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"License :: Free for non-commercial use",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Web Environment",
"Topic :: Software Development",
"Topic :: Software Development :: User Interfaces",
],
zip_safe=False,
include_package_data=True,
install_requires=get_install_requires(),
)