-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 969 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='blackfootwords',
version='0.0',
description='blackfootwords',
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',
],
extras_require={
'dev': ['flake8', 'waitress'],
'test': [
'mock',
'pytest>=5.4',
'pytest-clld',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
'selenium',
'zope.component>=3.11.0',
],
},
test_suite="blackfootwords",
entry_points="""\
[paste.app_factory]
main = blackfootwords:main
""")