-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (18 loc) · 787 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='sage-cli',
version='0.1.0',
description='SAGE command line interface',
url='https://github.com/sagecontinuum/sage-cli',
install_requires=[
'sage-storage-py @ git+https://github.com/sagecontinuum/sage-storage-py.git',
#'git+https://github.com/sagecontinuum/sage-storage-py.git',
#'sage_storage @ git+https://github.com/sagecontinuum/sage-storage-py.git',
'click',
],
#dependency_links=['https://github.com/sagecontinuum/sage-storage-py/tarball/master#egg=sage_storage-0.1'],
# pip install git+https://github.com/sagecontinuum/sage-storage-py.git
scripts=['sage-cli.py'],
include_package_data=True,
)