forked from MechWolf/MechWolf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (47 loc) · 1.4 KB
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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md")) as f:
long_description = f.read()
setup(
name="mechwolf",
version="0.1.2.dev0",
description="Continuous flow process description, analysis, and automation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MechWolf/MechWolf",
author="Benjamin Lee and Alex Mijalis",
author_email="benjamindlee@me.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Chemistry",
],
python_requires=">=3.7",
packages=find_packages(),
tests_require=["pytest"],
setup_requires=["pytest-runner"],
install_requires=[
"aiofiles",
"aioserial",
"altair",
"bokeh",
"graphviz",
"ipython>=7.0",
"ipywidgets",
"jupyter",
"loguru",
"nest_asyncio",
"networkx",
"Pint",
"PyYAML",
"terminaltables",
"vega",
"xxhash",
],
)