-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (21 loc) · 868 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
23
24
25
26
27
28
29
# Copyright 2016 Fred Hutchinson Cancer Research Center
# from distutils.core import setup
from setuptools import setup, find_packages
# or use find_packages() from setuptools ??
packages = find_packages(exclude=['tests']);
setup(name='yagdspy',
author='Keith Curtis',
description='Graph dependancy system for processing tasks',
license='License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
version='1.0',
url='https://github.com/krcurtis/yagdspy',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.5'
],
keywords='graph dependancy',
packages=packages,
install_requires=['pydot', 'boto3'],
python_requires='>=3.5.3',
)