forked from danielfrg/s3contents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 600 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (18 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
from setuptools import find_packages
import versioneer
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="s3contents",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A S3-backed ContentsManager implementation for Jupyter",
url="https://github.com/danielfrg/s3contents",
maintainer="Daniel Rodriguez",
maintainer_email="df.rodriguez143@gmail.com",
license="Apache 2.0",
packages=find_packages(),
install_requires=requirements,
zip_safe=False,
)