-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (44 loc) · 1.29 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import codecs
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f:
return f.read()
install_requires = [
'molo.core>=6.0.0, <=7.0.0'
]
setup(name='molo.usermetadata',
version=read('VERSION'),
description=('User metadata to be used with Molo.'),
long_description=read('README.rst'),
classifiers=[
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Praekelt.org',
author_email='[email protected]',
url='http://github.com/praekelt/molo.usermetadata',
license='BSD',
keywords='praekelt, mobi, web, django',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
namespace_packages=['molo'],
install_requires=install_requires,
extras_require = {
'test': [
'pytest==3.0.0',
'pytest-django==3.1.1',
'responses',
],
'cover': [
'pytest-cov',
],
'lint': [
'flake8==3.4.1',
],
},
entry_points={})