-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1008 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
30
31
32
33
34
35
36
import codecs
from setuptools import setup
with codecs.open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='regme',
version='0.3dev',
description='User registration and management library using MongoEngine',
long_description=long_description,
url='https://github.com/lig/regme',
author='Serge Matveenko',
author_email='s@matveenko.ru',
license='Apache',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Framework :: Django',
],
keywords='mongodb mongoengine django registration authentication',
packages=['regme'],
package_data={'regme': [
'templates/registration/*.html',
'templates/registration/email/*.txt']},
install_requires=[
'django',
'mongoengine',
'blinker',
],
)