-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 428 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 428 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import setuptools
setuptools.setup(
name="githubcommit",
version='0.1.0',
url="https://github.com/sat28/githubcommit",
author="Shaleen Anand Taneja",
description="Jupyter extension to enable user push notebooks to a git repo",
packages=setuptools.find_packages(),
install_requires=[
'psutil',
'notebook',
'gitpython'
],
package_data={'githubcommit': ['static/*']},
)