Skip to content

Commit 6439990

Browse files
Add files via upload
1 parent 5610bc9 commit 6439990

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Diff for: setup.cfg

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[metadata]
2+
name = presto
3+
version = 0.0.1
4+
5+
[options.entry_points]
6+
console_scripts =
7+
presto = packageScript:main

Diff for: setup.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='presto',
5+
version='0.0.1',
6+
packages=[''],
7+
install_requires=[
8+
'Click',
9+
'Docker',
10+
],
11+
)

0 commit comments

Comments
 (0)