Skip to content

Commit

Permalink
Release fortnet-python in version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vanderhe committed Oct 22, 2021
1 parent 46330a2 commit f8b62d7
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 8 deletions.
8 changes: 2 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,8 @@ Installation

|build status|

The package can be installed via conda-forge (available with first release)::

conda install fortnet-python

Alternatively, the package can be downloaded and installed via pip into the
active Python interpreter (preferably using a virtual python environment) by::
The package can be downloaded and installed via pip into the active Python
interpreter (preferably using a virtual python environment) by::

pip install fortnet-python

Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pytest
numpy
h5py
ase
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fortnet-python
version = 0.1
version = 0.2
author = T. W. van der Heide
author_email = vanderhe@uni-bremen.de
url = https://github.com/vanderhe/fortnet-python
Expand All @@ -17,7 +17,6 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.7

[options]
include_package_data = True
Expand Down
29 changes: 29 additions & 0 deletions setup.py
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']
)

0 comments on commit f8b62d7

Please sign in to comment.