-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 824 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 824 Bytes
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
# Copyright 2025, Battelle Energy Alliance, LLC, ALL RIGHTS RESERVED
from setuptools import find_packages, setup
setup(
name="GBOpt",
version="0.1",
packages=find_packages(),
install_requires=[
"numpy<=2.1",
"scipy",
"numba",
"pandas",
"matplotlib",
"pytest",
"spglib"
],
author="Chaitanya Bhave and Jarin French",
author_email="chaitanya.bhave@inl.gov and jarin.french@inl.gov",
description="A package for grain boundary optimization",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/IdahoLabResearch/GBOpt",
classifiers=[
"Programming Language :: Python :: 3",
"License :: MIT",
"Operating System :: OS Independent",
],
)