-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 996 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="kim-python-utils",
version="0.2.0",
description=(
"Helper routines for writing KIM Tests and Verification Checks"
),
author=["Ellad B. Tadmor", "Daniel S. Karls"],
url="https://github.com/openkim/kim-python-utils",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license="CDDL",
install_requires=["numpy >= 1.13.1", "scipy >= 1.3.0", "jinja2 >= 2.7.2", "ase >= 3.19.0b1"],
python_requires=">=2.7",
classifiers=[
"Development Status :: 4 - Beta"
"License :: OSI Approved :: Common Development and Distribution License 1.0 (CDDL-1.0)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
],
)