-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 892 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
#!/usr/bin/env python
from setuptools import setup, find_packages
github_url = 'https://github.com/ikresoft/django-nav-tree'
setup(
name='django-nav-tree',
version='1.0',
description='Django Navigation',
long_description='Django Navigation Tree',
author='Enver Bisevac, Mirza Delic',
author_email='ikresoft@gmail.com',
url=github_url,
packages=find_packages(),
include_package_data=True,
license='MIT License',
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Framework :: Django, Django Navigation Tree',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
)