forked from ConsumerAffairs/django-affect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 782 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 782 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
25
26
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-affect',
version='1.5.0',
description='Request flagging engine inspired by django-waffle',
author='Jeremy Sattefield',
author_email='jsatt@jsatt.com',
url='https://github.com/jsatt/django-affect',
#license='',
packages=[
'affect', 'affect.migrations'],
install_requires=[
'Django>=1.8',
'django-extensions'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Site Management'],
)