-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (31 loc) · 974 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
32
33
34
35
36
import setuptools
import os
from shutil import copyfile
short_desc = "DisJotter allows the user to interactively create a Docker image from a Jupyter Notebook."
try:
with open("./README.md", "r") as rm:
long_description = rm.read()
except FileNotFoundError:
long_description = short_desc
setuptools.setup(
name="DisJotter",
version="1.0.5",
author="Wilco Kruijer",
author_email="[email protected]",
description=short_desc,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/WilcoKruijer/DisJotter",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"docker>=4.2.0",
"pigar>=0.10.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)