-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 1021 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
from setuptools import setup, find_packages
version = '0.9'
setup(
name='django-simple-utilities',
version=version,
description="Simple utilities which help create django application.",
keywords='django, admin, utilities',
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/matllubos/django-simple-utilities',
license='GPL',
package_dir={'utilities': 'utilities'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: Czech',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
zip_safe=False
)