-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.07 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.07 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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import find_packages
from setuptools import setup
description="Analyzing anharmonicity of traps for charged particles"
setup(
name="anharm_analysis",
version="1.0.0",
description="Library for analyzing charged-particle trap anharmonicity",
long_description=description,
author="Electron",
keywords=["Quantum Information Processing", "Numerical Simulation"],
packages=find_packages(),
include_package_data=True,
install_requires=[
"future",
"numpy",
"scipy",
"pandas",
"setuptools",
"matplotlib",
'tqdm',
# 'optuna',
# 'plotly',
'scikit-learn',
#'sphericart',
'pyvista',
'xarray',
'cvxpy',
'sympy',
'juliacall'
],
package_data = {
"anharm_analysis": ["*.py"]
},
setup_requires=[],
classifiers=[
"Programming Language :: Python :: 3.8",
],
scripts=[
],
)