-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release fortnet-python in version 0.2
- Loading branch information
Showing
4 changed files
with
36 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pytest | ||
numpy | ||
h5py | ||
ase |
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,29 @@ | ||
#!/usr/bin/env python3 | ||
from distutils.core import setup | ||
|
||
|
||
setup( | ||
name='fortnet-python', | ||
version='0.2', | ||
description='Python Tools for the Fortnet Software Package', | ||
author='T. W. van der Heide', | ||
url='https://github.com/vanderhe/fortnet-python', | ||
platforms="platform independent", | ||
package_dir={'': 'src'}, | ||
packages=['fortformat'], | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
long_description=''' | ||
Python Tools for the Fortnet Software Package | ||
--------------------------------------------- | ||
fortnet-python provides tools to generate compatible datasets as well as extract | ||
results obtained by the neural network implementation Fortnet. | ||
''', | ||
requires=['pytest', 'numpy', 'h5py', 'ase'] | ||
) |