-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
55 lines (53 loc) · 1.79 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
52
53
54
55
"""Install funsies."""
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="funsies",
version="0.8.1",
author="Cyrille Lavigne",
author_email="cyrille.lavigne@mail.utoronto.ca",
description="Funsies is a library to build and execution engine for"
+ " reproducible, composable and data-persistent computational workflows.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aspuru-guzik-group/funsies",
package_dir={"": "src"},
package_data={"funsies": ["py.typed"]}, # mypy exports
packages=setuptools.find_namespace_packages(where="src"),
# Dependencies
python_requires=">=3.7",
install_requires=[
"mypy_extensions",
"redis",
"cloudpickle",
"rq>=1.7",
"loguru",
'importlib-metadata ~= 1.0 ; python_version < "3.8"',
'typing_extensions ; python_version < "3.8"',
"chevron",
],
entry_points="""
[console_scripts]
funsies=funsies._cli:main
start-funsies=funsies._start_funsies:main
""",
classifiers=[
"Development Status :: 4 - Beta",
#
"Typing :: Typed",
#
"License :: OSI Approved :: MIT License",
#
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
#
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
keywords="workflows hashtree redis compchem chemistry parallel hpc",
)