-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
81 lines (75 loc) · 2.2 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
76
77
78
79
80
81
# Standard Library
from codecs import open
from os import path
from setuptools import find_packages
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'CHANGES.rst'), encoding='utf-8') as f:
long_description += "\n" + f.read()
setup(
name='pyramid_notebook',
version='0.3.1.dev0',
description='Embed IPython Notebook shell on your Pyramid website',
long_description=long_description,
url='https://github.com/websauna/pyramid_notebook',
author='Mikko Ohtamaa',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Shells',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Pyramid',
'Framework :: IPython',
],
keywords='ipython setuptools development shell uwsgi',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
zip_safe=False,
python_requires='>=3.5.2',
include_package_data=True,
install_requires=[
"ipython[notebook]>=7.0.1",
'daemonocle>=1.0.1',
'PasteDeploy',
'port-for',
'pyramid',
'sqlalchemy',
'ws4py'
],
extras_require={
'dev': [
'flake8',
'flake8-isort',
'zest.releaser[recommended]',
],
'test': [
'codecov',
'flaky',
'paste',
'pyramid_jinja2',
'pytest',
'pytest-cov',
'pytest-splinter',
'selenium>3',
'webtest',
],
'uwsgi': [
'uwsgi',
'ws4py'
]
},
entry_points={
"paste.app_factory": [
'main = pyramid_notebook.demo:main'
]
},
)