-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (48 loc) · 1.24 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="indicogram",
version="0.0.1.dev",
description="indicogram",
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author="Florian Matter",
author_email="fmatter@mailbox.org",
url="",
keywords="linguistics, digital grammaticography, clld",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"clld>=9.0.0",
"clld_corpus_plugin>=0.0.8",
"clld_document_plugin>=0.0.5",
"clld_morphology_plugin>=0.0.10",
"clld_markdown_plugin>=0.2.0",
"waitress>=2.1.2",
"cldf-ldd",
"tqdm",
"python-slugify"
],
extras_require={
"dev": ["flake8"],
"test": [
"mock",
"pytest>=5.4",
"pytest-clld",
"pytest-mock",
"pytest-cov",
"coverage>=4.2",
"selenium",
"zope.component>=3.11.0",
],
},
test_suite="indicogram",
entry_points="""\
[paste.app_factory]
main = indicogram:main
""",
)