forked from sveetch/sveeaccounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.09 KB
/
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
31
32
33
from setuptools import setup, find_packages
setup(
name='sveeaccounts',
version=__import__('sveeaccounts').__version__,
description=__import__('sveeaccounts').__doc__,
long_description=open('README.rst').read(),
author='David Thenon',
author_email='sveetch@gmail.com',
url='http://pypi.python.org/pypi/sveeaccounts',
license='MIT',
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'autobreadcrumbs',
'django-registration-redux>=1.0',
'django-simple-captcha>=0.4.1',
'django-braces>=1.0.0',
],
include_package_data=True,
zip_safe=False
)