-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (52 loc) · 1.17 KB
/
setup.py
File metadata and controls
54 lines (52 loc) · 1.17 KB
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
51
52
53
54
from setuptools import setup, find_packages
setup(
name='apics',
version='0.0',
description='apics',
long_description='',
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>=9.2.2',
'clldmpg>=4.2',
'clldutils',
'pyclts>=2.1.1',
'csvw>=1.0',
'sqlalchemy',
'BeautifulSoup4',
'waitress',
],
extras_require={
'dev': [
'flake8',
'tox',
'bs4',
],
'test': [
'mock',
'psycopg2',
'pytest>=3.1',
'pytest-clld>=0.4',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
'selenium',
'zope.component>=3.11.0',
],
},
test_suite="apics",
entry_points="""\
[paste.app_factory]
main = apics:main
""")