-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (32 loc) · 1018 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
32
33
34
35
36
37
38
import re
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("befaas/__init__.py", "r") as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
setuptools.setup(
name="befaas", # Replace with your own username
version=version,
author="befaas",
author_email="befaas@test.com",
description="Function and classes for analyzing befaas experiments.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Be-FaaS/BeFaaS-analysis",
packages=setuptools.find_packages(),
install_requires=[
"json_coder==0.5",
"argmagic==1.0.1",
"networkx",
"numpy",
"loguru",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)