-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (48 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
from setuptools import setup, find_packages
setup(
name='papuanvoices',
version='0.0',
description='papuanvoices',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='',
author_email='',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'clld>=11.0.1',
'cldfbench>=1.13.0',
'clld-glottologfamily-plugin>=4.0',
'clld-audio-plugin>=1.0.0',
'pyglottolog>=3.12.0',
'clldmpg>=4.3.0',
],
extras_require={
'dev': ['flake8', 'waitress', 'psycopg2'],
'test': [
'mock',
'pytest>=7.4.0',
'pytest-clld',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
'selenium',
'zope.component>=3.11.0',
],
},
test_suite="papuanvoices",
message_extractors={'papuanvoices': [
('**.py', 'python', None),
('**.mako', 'mako', {'encoding': 'utf8'}),
('web/static/**', 'ignore', None)]},
entry_points="""\
[paste.app_factory]
main = papuanvoices:main
""")