-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
49 lines (47 loc) · 1.16 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
from setuptools import setup, find_packages
setup(
name='amsd',
version='0.0',
description='amsd',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='EVA DLCE Dev',
author_email='[email protected]',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'pyramid>=2.0',
'clld>=11.2.2',
'csvw>=3.3.0',
'clldmpg>=4.3.1',
'sqlalchemy>=1.4.27',
'waitress>=1.4.4',
],
extras_require={
'dev': [
'flake8',
'tox',
],
'test': [
'psycopg2>=2.8.6',
'mock>=4.0.3',
'pytest>=7.4.2',
'pytest-clld>=1.2.0',
'pytest-mock>=3.10.0',
'pytest-cov>=4.0.0',
'coverage>=5.5',
'selenium>=4.17.2',
'zope.component>=5.0.1',
],
},
test_suite="amsd",
entry_points="""\
[paste.app_factory]
main = amsd:main
""")