forked from Aleksi44/django-admin-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (37 loc) · 1.2 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
import json
PROJECT_DIR = os.path.dirname(__file__)
with open("README.rst", "r") as fh:
long_description = fh.read()
with open('./package.json') as package:
data = json.load(package)
version = data['version']
setup(
name='django-admin-tailwind',
version=version,
url='https://github.com/Aleksi44/django-admin-tailwind',
author="Alexis Le Baron",
author_email="hello@snoweb.fr",
description="Django Admin Tailwind",
long_description=long_description,
keywords="django django-admin tailwind",
license='GPL-3.0',
install_requires=[],
platforms=['linux'],
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'Topic :: Software Development'
]
)