forked from Sage-Bionetworks/synapseformation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 797 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
"""Setup"""
import os
from setuptools import setup, find_packages
# figure out the version
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "synapseformation", "__version__.py")) as f:
exec(f.read(), about)
setup(name='synapseformation',
version=about["__version__"],
description='Client for using Synapse Formation templates.',
url='https://github.com/Sage-Bionetworks/synapseformation',
author='Kenneth Daily,Thomas Yu,Kelsey Montgomery',
license='Apache',
packages=find_packages(),
zip_safe=False,
python_requires='>=3.6',
entry_points={'console_scripts': ['synapseformation = synapseformation.__main__:cli']},
install_requires=['click',
'synapseclient>=2.0.0'])