forked from GermanoGuerrini/django-maat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 768 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
from setuptools import setup, find_packages
APP_NAME = 'djangomaat'
setup(
name=APP_NAME,
version=".".join(map(str, __import__(APP_NAME).VERSION)),
packages=find_packages(),
include_package_data=True,
description = 'Fast MySQL ordering',
author = 'Germano Guerrini',
author_email = '[email protected]',
url = 'https://github.com/GermanoGuerrini/django-maat',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)