-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (28 loc) · 897 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
30
31
import setuptools
import sys
if sys.version_info < (3,6):
sys.exit('Python < 3.6 is not supported for MARVELO.')
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name='fission',
version='2.0-beta',
license='MIT',
scripts=["fission/templates/fission_admin.py",
"fission/templates/fission_interactive.py",
"fission/templates/fission_debug.py"],
description="A framework for distributed wirless computing.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.cs.upb.de/js99/afdwc",
packages=["fission"] +
setuptools.find_packages(include=["fission.*"]),
install_requires=[
'dispy>=4.12',
'lxml==4.4.2',
'pycos>=4.8.13',
'graphviz==0.13.2',
'networkx==2.6.3',
'matplotlib==3.5.2',
]
)