-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (41 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·45 lines (41 loc) · 1.15 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
if sys.version > '3':
requires = [
'django >= 1.8.9'
]
else:
requires = [
'enum34 >= 1.1.2',
'django >= 1.8.9',
]
try:
long_description = open('README.md').read()
except:
long_description = ''
setup(
name='django-render-url',
version='0.11',
packages=find_packages(),
author='WANG Tai',
author_email='[email protected]',
url='https://github.com/wangtai/django_render',
description='a very light django plugin',
long_description=long_description,
license='Apache2',
install_requires=requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup'
],
include_package_data=True,
zip_safe=False
)