-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
57 lines (54 loc) · 1.68 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
import os
from setuptools import setup, find_packages
def getversion():
"""Fetches version information from VERSION file"""
with open(os.path.join('iprPy', 'VERSION'), encoding='UTF-8') as version_file:
version = version_file.read().strip()
return version
def getreadme():
with open('README.rst', encoding='UTF-8') as readme_file:
return readme_file.read()
setup(name = 'iprPy',
version = getversion(),
description = 'Interatomic Potential Repository Python Property Calculations and Tools',
long_description = getreadme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Physics'
],
keywords = [
'atom',
'atomic',
'atomistic',
'molecular dynamics',
'high-throughput',
'interatomic potential',
],
url = 'https://github.com/usnistgov/iprPy',
author = 'Lucas Hale',
author_email = '[email protected]',
packages = find_packages(),
install_requires = [
'DataModelDict',
'numpy',
'matplotlib',
'scipy',
'pandas',
'atomman>=1.4.11',
'requests',
'bokeh',
'plotly',
],
entry_points = {
'console_scripts': [
'iprPy = iprPy.command_line:command_line'
]
},
include_package_data = True,
zip_safe = False)