-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (48 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
from setuptools import setup, find_packages
from _wowp_setup import get_version
import os
options = dict(
name='wowp',
version=get_version(),
packages=find_packages(),
scripts=['scripts/wowp', 'scripts/wowp_on_slurm'],
license='MIT',
description='Data-flow-actors-based workflow framework',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
author='Jakub Urban, Jan Pipek',
author_email='coobas@gmail.com',
url='http://pythonic.eu/wowp/',
install_requires=[
'decorator',
'future',
'networkx',
'nose',
'six',
'click',
],
extras_require={
'parallel': ['ipyparallel', 'mpi4py'],
'distributed': ['distributed'],
'julia': ['julia'],
'matlab': ['matlab', 'stopit']
},
entry_points={
# 'console_scripts' : [
# 'wowp = wowp:function_that_does_it_all'
# ]
},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License", "Operating System :: OS Independent",
"Intended Audience :: Developers", "Intended Audience :: Information Technology",
"Intended Audience :: Science/Research", "Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
],
test_suite='nose.collector',
tests_require='nose>=1.0')
options["extras_require"]["all"] = [library for value in options["extras_require"].values() for library in value]
setup(**options)