forked from pinax/django-user-accounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 825 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
from setuptools import setup, find_packages
import account
setup(
name = "django-user-accounts",
version = account.__version__,
author = "Brian Rosner",
author_email = "[email protected]",
description = "a Django user account app",
long_description = open("README.rst").read(),
license = "MIT",
url = "http://github.com/pinax/django-user-accounts",
packages = find_packages(),
install_requires = [
"django-appconf==0.5",
"pytz==2012d"
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)