-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 770 Bytes
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 = 'rohypnol'
setup(
name=APP_NAME,
version="%s.%s" % __import__(APP_NAME).VERSION[:2],
packages=find_packages(),
include_package_data=True,
description = 'Simplified cache deletion',
author = 'Germano Guerrini',
author_email = 'germano.guerrini@gmail.com',
url = 'https://github.com/GermanoGuerrini/django-rohypnol',
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',
],
)