-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
32 lines (30 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import fancytree
import os
setup(name='django-fancytree',
version=fancytree.__version__,
description='Django forms widget that uses Fancytree to display tree data',
author='Riccardo Magliocchetti',
author_email='riccardo.magliocchetti@gmail.com',
url='https://github.com/xrmx/django-fancytree',
packages=find_packages(),
keywords=['django', 'fancytree', 'mptt', 'tree'],
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.rst'),
).read().strip(),
install_requires=[
'Django',
'django-mptt',
],
include_package_data=True
)