-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (38 loc) · 1.24 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
import os
from codecs import open
from setuptools import setup
import leaf
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-leaf',
version=leaf.__version__,
author='Ryan Senkbeil',
author_email='[email protected]',
description='Render and serve django templates based on URL.',
long_description=long_description,
url='https://github.com/gsmke/django-leaf',
license='BSD',
packages=['leaf'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'django-mptt >= 0.11.0',
'six',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
]
)