-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
55 lines (54 loc) · 1.27 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
51
52
53
54
55
from setuptools import setup, find_packages
setup(
name='wals3',
version='0.0',
description='wals3',
long_description='',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='',
author_email='',
url='',
keywords='web wsgi bfg pylons pyramid',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='wals3',
install_requires=[
'tqdm',
'clld>=11.3.1',
'clldutils>=3.6',
'clldmpg>=4.0.0',
'csvw>=1.8.1',
'BeautifulSoup4>=4.9.1',
'html5lib>=1.1',
'sqlalchemy>=1.3.20',
'waitress'
],
extras_require={
'dev': [
'flake8',
'tox',
],
'test': [
'mock>=4.0.2',
'psycopg2-binary',
'pytest>=6.2.1',
'pytest-clld>=1.0.2',
'pytest-mock>=3.3.1',
'pytest-cov>=2.10.1',
'coverage>=5.3',
'selenium',
'zope.component>=4.6.2',
],
},
entry_points={
'paste.app_factory': [
'main = wals3:main',
],
},
)