-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·41 lines (36 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
"""
Setup script for Noodles.
"""
from pathlib import Path
from setuptools import setup, find_packages
# Get the long description from the README file
here = Path(__file__).parent.absolute()
with (here / 'README.md').open(encoding='utf-8') as f:
long_description = f.read()
setup(
name='Noodles',
version='0.3.4',
description='Workflow Engine',
long_description=long_description,
long_description_content_type='text/markdown',
author='Johan Hidding',
url='https://github.com/NLeSC/noodles',
packages=find_packages(exclude=['test*']),
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Environment :: Console',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Distributed Computing'],
install_requires=['graphviz', 'ujson'],
extras_require={
'xenon': ['pyxenon'],
'numpy': ['numpy', 'h5py', 'filelock'],
'develop': [
'pytest', 'pytest', 'coverage', 'pep8', 'numpy', 'tox',
'sphinx', 'sphinx_rtd_theme', 'nbsphinx', 'flake8'],
},
)