forked from abinit/pseudo_dojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·144 lines (116 loc) · 3.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/env python
"""Setup script for pseudo_dojo."""
import sys
import os
from glob import glob
from setuptools import find_packages
# This check is also made in pseudo_dojo/__init__, don't forget to update both when
# changing Python version requirements.
if sys.version[0:3] < '2.7':
sys.stderr.write("ERROR: pseudo_dojo requires Python Version 2.7 or above. Exiting.")
sys.exit(1)
def file_doesnt_end_with(test, endings):
"""
A little utility we'll need below, since glob() does NOT allow you to do exclusion on multiple endings!
Return true if test is a file and its name does NOT end with any
of the strings listed in endings.
"""
if not os.path.isfile(test):
return False
for e in endings:
if test.endswith(e):
return False
return True
#---------------------------------------------------------------------------
# Basic project information
#---------------------------------------------------------------------------
#with open("README.rst") as f:
# long_desc = f.read()
# ind = long_desc.find("\n")
# long_desc = long_desc[ind + 1:]
# release.py contains version, authors, license, url, keywords, etc.
release_file = os.path.join('pseudo_dojo','core','release.py')
with open(release_file) as f:
code = compile(f.read(), release_file, 'exec')
exec(code)
#def find_packages():
# """Find all packages."""
# return find_packages(exclude=())
def find_package_data():
"""Find pseudo_dojo's package_data."""
# This is not enough for these things to appear in an sdist.
# We need to muck with the MANIFEST to get this to work
package_data = {
'pseudo_dojo.refdata.deltafactor.data': ['*.txt', 'CIFs/*', 'history/*'],
'pseudo_dojo.refdata.gbrv.data': ['*.csv'],
'pseudo_dojo.pseudos': ["ONCVPSP-PBE/*/*",],
}
return package_data
def find_scripts():
"""Find pseudo_dojo scripts."""
scripts = []
# All python files in abipy/scripts
pyfiles = glob(os.path.join('pseudo_dojo','scripts',"*.py") )
scripts.extend(pyfiles)
return scripts
def cleanup():
"""Clean up the junk left around by the build process."""
if "develop" not in sys.argv:
import shutil
try:
shutil.rmtree('pseudo_dojo.egg-info')
except:
try:
os.unlink('pseudo_dojo.egg-info')
except:
pass
# List of external packages we rely on.
# Note setup install will download them from Pypi if they are not available.
install_requires = [
"six",
"numpy",
"scipy",
"tabulate",
"pandas",
"jsonschema",
"atomicfile",
"periodic_table_plotter",
"monty",
"pymatgen",
"ipython",
"nbformat",
"python-daemon",
"matplotlib",
"abipy",
]
#---------------------------------------------------------------------------
# Find all the packages, package data, and data_files
#---------------------------------------------------------------------------
# Get the set of packages to be included.
my_packages = find_packages(exclude=())
my_scripts = find_scripts()
my_package_data = find_package_data()
#data_files = find_data_files()
# Create a dict with the basic information
# This dict is eventually passed to setup after additional keys are added.
setup_args = dict(
name=name,
version=version,
description=description,
long_description=long_description,
author=author,
author_email=author_email,
#url=url,
#download_url=download_url,
license=license,
platforms=platforms,
keywords=keywords,
install_requires=install_requires,
packages=my_packages,
package_data=my_package_data,
scripts=my_scripts,
)
if __name__ == "__main__":
from setuptools import setup
setup(**setup_args)
cleanup()