forked from d-demirci/django-adminlte3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 760 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 760 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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='django-adminlte3',
version=open('VERSION').read().strip(),
author='d3n1z',
author_email='d3n1z@protonmail.com',
packages=find_packages(),
scripts=[],
url='https://github.com/d-demirci/django-adminlte3',
license='MIT',
description='Admin LTE templates, admin theme, and template tags for Django',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
# Any requirements here, e.g. "Django >= 1.1.1"
install_requires=[
'django',
],
python_requires='>=3.6',
)