-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (53 loc) · 1.73 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
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="jvbot",
version="0.1",
description="Control of Fenning Research Group automated current-voltage tester",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rishi Kumar",
author_email="rek010@eng.ucsd.edu",
download_url="https://github.com/rekumar/jvbot",
license="MIT",
install_requires=[
"numpy",
"natsort",
"tqdm",
"pymeasure"
],
# extras_require={
# 'model_saving': ['h5py'],
# 'molecules': ['openbabel', 'rdkit'],
# 'tensorflow': ['tensorflow>=2.1'],
# 'tensorflow with gpu': ['tensorflow-gpu>=2.1'],
# },
packages=find_packages(),
package_data={
"hardware": ["*.yaml"],
"tray_versions": ["*.yaml"],
},
include_package_data=True,
keywords=["materials", "science", "machine", "automation"],
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',
# ]
# }
)