-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (47 loc) · 1.06 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='gelato',
version='0.0',
description='gelato',
long_description='',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
install_requires=[
'clld>=9.2.2',
'clldmpg>=4.2',
'pyglottolog',
'sqlalchemy',
'waitress',
],
extras_require={
'dev': [
'flake8',
'tox',
],
'test': [
'mock',
'psycopg2',
'pytest>=3.6',
'pytest-clld',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
'selenium',
'zope.component>=3.11.0',
],
},
author='',
author_email='',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points="""\
[paste.app_factory]
main = gelato:main
""")