forked from PotatoHD404/py-vercel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
31 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ test.js | |
|
||
example/.vercel/ | ||
|
||
__pycache__ | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
const log = require('./log'); | ||
const pip = require('./pip'); | ||
const python = require('./python'); | ||
const apt = require('./apt'); | ||
const linux = require('./linux'); | ||
|
||
module.exports = { | ||
log, | ||
pip, | ||
python, | ||
apt, | ||
linux, | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#! /usr/bin/env python | ||
import json | ||
# #! /usr/bin/env python | ||
# import json | ||
|
||
from setuptools import setup | ||
# from setuptools import setup | ||
|
||
|
||
with open('package.json') as f: | ||
package_data = json.loads(f.read()) | ||
version = package_data['version'] | ||
# with open('package.json') as f: | ||
# package_data = json.loads(f.read()) | ||
# version = package_data['version'] | ||
|
||
# py-vercel | ||
"""A barebones setup for tests | ||
""" | ||
setup( | ||
name='py-vercel', | ||
version=version, | ||
packages=[ | ||
'pyvercel' | ||
], | ||
install_requires=[ | ||
'Werkzeug', | ||
'py-exceptions' | ||
] | ||
) | ||
# # py-vercel | ||
# """A barebones setup for tests | ||
# """ | ||
# setup( | ||
# name='py-vercel', | ||
# version=version, | ||
# packages=[ | ||
# 'pyvercel' | ||
# ], | ||
# install_requires=[ | ||
# 'Werkzeug', | ||
# 'py-exceptions' | ||
# ] | ||
# ) |