-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 755 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import setup
setup(name='evolve',
version='1.3',
description='Python library to submit workflows in evolve infrastructure',
url='https://sunlight.io/',
author='Sunlight.io',
license='GPL',
packages=['.'],
install_requires=['requests>=2.23'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
'License :: OSI Approved :: Apache Software License'])