forked from colin-daniels/pyputil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (50 loc) · 1.75 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
__author__ = "Colin Daniels"
__maintainer__ = "Colin Daniels"
__email__ = "[email protected]"
__date__ = "Apr 27, 2019"
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='pyputil',
version='0.0.1',
description='Python physics utility programs',
long_description='',
url='https://github.com/colin-daniels/pyputil',
author='Colin Daniels',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_data={},
# required due to use of @dataclass
python_requires='>=3.7',
zip_safe=False,
install_requires=[
# note: CairoSVG actually uses semver
'CairoSVG~=2.3',
'h5py~=2.9.0',
'lxml~=4.3.3',
'numpy~=1.16.3',
'phonopy==2.1.3',
'Pillow~=6.2.0',
'pymatgen==2019.4.11',
'ruamel.yaml~=0.15.94',
'scipy~=1.2.1',
],
classifiers=['Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Other/Nonlisted Topic',
'Topic :: Scientific/Engineering'],
entry_points={
'console_scripts': [
'modeplot = pyputil.bin.modeplot:main',
'structure-gen = pyputil.bin.structure_gen:main',
'rsp2-util = pyputil.bin.rsp2_util:main',
]
}
)