-
-
Notifications
You must be signed in to change notification settings - Fork 676
/
setup.py
34 lines (30 loc) · 842 Bytes
/
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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
import simpleui
if sys.version_info < (3, 0):
long_description = "\n".join([
open('README.rst', 'r').read(),
])
else:
long_description = "\n".join([
open('README.rst', 'r', encoding='utf-8').read(),
])
setup(
name='django-simpleui',
version=simpleui.get_version(),
packages=['simpleui'],
zip_safe=False,
include_package_data=True,
url='https://github.com/newpanjing/simpleui',
license='Apache License 2.0',
author='panjing',
long_description=long_description,
author_email='[email protected]',
description='django admin theme 后台模板',
install_requires=['django'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)