-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into multi_version_release
- Loading branch information
Showing
7 changed files
with
71 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "atomistics" | ||
description = "Interfaces for atomistic simulation codes and workflows" | ||
authors = [ | ||
{ name = "Jan Janssen", email = "[email protected]" }, | ||
] | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
keywords = ["pyiron"] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"License :: OSI Approved :: BSD License", | ||
"Intended Audience :: Science/Research", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dependencies = [ | ||
"ase==3.22.1", | ||
"numpy==1.26.0", | ||
"scipy==1.11.4", | ||
"spglib==2.1.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/pyiron/atomistics" | ||
Documentation = "https://atomistics.readthedocs.io" | ||
Repository = "https://github.com/pyiron/atomistics" | ||
|
||
[project.optional-dependencies] | ||
phonopy = [ | ||
"phonopy==2.20.0", | ||
"seekpath==2.1.0", | ||
"structuretoolkit==0.0.12", | ||
] | ||
gpaw = [ | ||
"gpaw==23.9.1", | ||
] | ||
lammps = [ | ||
"pylammpsmpi==0.2.6", | ||
"jinja2==3.1.2", | ||
"pandas==2.1.3", | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["atomistics"] | ||
|
||
[tool.versioneer] | ||
VCS = "git" | ||
style = "pep440" | ||
versionfile_source = "atomistics/_version.py" | ||
parentdir_prefix = "atomistics" | ||
tag_prefix = "atomistics-" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,3 @@ | ||
""" | ||
Setuptools based setup module | ||
""" | ||
from setuptools import setup, find_packages | ||
from pathlib import Path | ||
import versioneer | ||
from setuptools import setup | ||
|
||
setup( | ||
name='atomistics', | ||
version=versioneer.get_version(), | ||
description='atomistics - materials science workgflows to calculate material properties', | ||
long_description=Path("README.md").read_text(), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/pyiron/atomistics', | ||
author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department', | ||
author_email='[email protected]', | ||
license='BSD', | ||
|
||
classifiers=['Development Status :: 5 - Production/Stable', | ||
'Topic :: Scientific/Engineering :: Physics', | ||
'License :: OSI Approved :: BSD License', | ||
'Intended Audience :: Science/Research', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11' | ||
], | ||
|
||
keywords='pyiron', | ||
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]), | ||
install_requires=[ | ||
'ase==3.22.1', | ||
'numpy==1.26.0', | ||
'scipy==1.11.3', | ||
'spglib==2.1.0', | ||
], | ||
extras_require={ | ||
"phonopy": ['phonopy==2.20.0', 'seekpath==2.1.0', 'structuretoolkit==0.0.12'], | ||
"gpaw": ['gpaw==23.9.1'], | ||
"lammps": ['pylammpsmpi==0.2.6', 'jinja2==3.1.2', 'pandas==2.1.3'] | ||
}, | ||
cmdclass=versioneer.get_cmdclass(), | ||
) | ||
setup() |