-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (66 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup
from setuptools import find_packages
import os
import re
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="frgtrainview",
version="0.1",
description="Automated analsyis of the Fenning Research Group automated synthesis platform",
long_description=long_description,
long_description_content_type="text/markdown",
author="Deniz N. Cakan",
author_email="[email protected]",
download_url="https://github.com/fenning-research-group/PASCAL_TrainView/batch_process",
license="MIT",
install_requires=[
"numpy",
"aiohttp",
"pyyaml",
"scipy",
"mixsol",
"ortools",
"matplotlib",
"pandas",
"pyserial",
"natsort",
"ntplib",
"websockets",
"dill",
"PyQt5",
"tifffile",
"scikit-image",
"ax-platform",
"ntplib",
],
packages=find_packages(),
package_data={
"": [
"hardware/*.yaml",
"hardware/*/*.yaml",
"hardware/*/*/*.yaml",
"hardware/*/*/*.json",
"Examples/*.ipynb",
],
},
include_package_data=True,
keywords=["materials", "science", "machine", "automation", "data science"],
classifiers=[
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
# entry_points={
# 'console_scripts': [
# 'meg = megnet.cli.meg:main',
# ]
# }
)