forked from danielfrg/s3contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 871 Bytes
/
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
import os
from distutils.core import setup
from setuptools import find_packages
import versioneer
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
def read_file(filename):
filepath = os.path.join(BASE_DIR, filename)
with open(filepath) as f:
return f.read()
REQUIREMENTS = read_file("requirements.txt").splitlines()
setup(
name="s3contents",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A S3-backed ContentsManager implementation for Jupyter",
long_description=read_file('README.md'),
long_description_content_type="text/markdown",
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,
)