-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
23 lines (21 loc) · 938 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
from setuptools import setup, find_packages
from registration import get_version
setup(
name='django-djregs',
version=get_version().replace(' ', '-'),
description='Handle user registration and email verification with Django',
author='SF Software limited t/a Pebble',
author_email='[email protected]',
url='https://github.com/mypebble/djregs',
package_dir={'registration': 'registration'},
packages=find_packages(),
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
)