-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
35 lines (33 loc) · 1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aws_jupyter_proxy",
version="0.3.7",
url="https://github.com/aws/aws-jupyter-proxy",
author="Amazon Web Services",
description="A Jupyter server extension to proxy requests with AWS SigV4 authentication",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license="Apache License 2.0",
install_requires=["notebook >=6.0, <7.0", "botocore >=1.0, <2.0"],
extras_require={
"dev": [
"asynctest",
"black",
"pytest",
"pytest-asyncio",
"pytest-cov",
]
},
python_requires=">=3.6",
data_files=[
(
"etc/jupyter/jupyter_notebook_config.d",
["aws_jupyter_proxy/etc/aws_jupyter_proxy.json"],
)
],
classifiers=["Development Status :: 4 - Beta"],
include_package_data=True,
)