-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
75 lines (68 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
__docs__ = """
To install fully please see git_docs/deploy.md
"""
import os, warnings
from setuptools import setup, find_packages
warnings.warn('PLEASE READ THE FILE `git_docs/deploy.md`')
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'plaster_pastedeploy',
'pyramid',
'pyramid_mako',
'pyramid_debugtoolbar',
'waitress',
'alembic',
'pyramid_retry',
'pyramid_tm',
'SQLAlchemy',
'transaction',
'zope.sqlalchemy',
'bcrypt',
'numpy',
'pycrypto',
'markdown',
'psycopg2-binary',
'requests',
'sentry-sdk',
'apscheduler',
'imageio', #,
'blosc', # pyrosetta?
#'bio',
#'pyrosetta'
]
tests_require = [
'WebTest >= 1.3.1', # py3 compat
'pytest >= 3.7.4',
'pytest-cov',
]
setup(
name='michelanglo_app',
version='1.0',
description='michelanglo_app',
long_description=__docs__,
classifiers=[
'Programming Language :: Python',
'Framework :: Pyramid',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
author='Matteo Ferla',
author_email='matteo.ferla@well.ox.ac.uk',
url='https://michelanglo.sgc.ox.ac.uk/',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
extras_require={
'testing': tests_require,
},
install_requires=requires,
entry_points={
'paste.app_factory': [
'main = michelanglo_app:main',
],
'console_scripts': [
'initialize_michelanglo_app_db=michelanglo_app.scripts.initialize_db:main',
],
},
)