-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (48 loc) · 1.14 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
# setup.py
from setuptools import setup, find_packages
setup(
name='dplace2',
version='0.0',
description='dplace2',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='DLCE RDM',
author_email='dlce.rdm@eva.mpg.de',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'clld>=9.2.2',
'clldmpg>=4.2',
'clld_phylogeny_plugin>=1.6.0',
'sqlalchemy',
'waitress',
],
extras_require={
'dev': [
'flake8',
'tox',
'pydplace',
],
'test': [
'psycopg2',
'mock',
'pytest>=3.1',
'pytest-clld>=0.4',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
'selenium',
'zope.component>=3.11.0',
],
},
test_suite="dplace2",
entry_points="""\
[paste.app_factory]
main = dplace2:main
""")