-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (56 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
56
57
58
59
import pathlib
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setuptools.setup(
name="pimcscripts",
version="0.4.6",
packages=setuptools.find_packages(),
description="Scripts for analzying the results of path integral quantum Monte Carlo simulations",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/DelMaestroGroup/pimcscripts",
author="Adrian Del Maestro",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
include_package_data=True,
install_requires=["numpy", "matplotlib", "scipy", "docopt", "joblib"],
scripts=["bin/pimcave.py",
"bin/pimcplot.py",
"bin/reduce-one.py",
"bin/clear_data.py",
"bin/convertPIMCuuid.py",
"bin/convert_state.py",
"bin/energyfit.py",
"bin/fix_tiny.py",
"bin/gensubmit.py",
"bin/getresults.py",
"bin/hescrew.py",
"bin/make_pbs_resubmit_script.py",
"bin/make_pbs_script.py",
"bin/merge.py",
"bin/mergeBK.py",
"bin/numform.py",
"bin/pimcbin.py",
"bin/plot_matrix_estimator.py",
"bin/plot_scalar_estimator.py",
"bin/plot_tensor_estimator.py",
"bin/plot_vector_estimator.py",
"bin/plotbin.py",
"bin/plotoptions.py",
"bin/procisf.py",
"bin/rename.py",
"bin/rmempty.py",
"bin/rsubmit.py",
"bin/timeStepScaling.py",
"bin/wikiUpload.py",
],
)