Skip to content

Commit f8b62d7

Browse files
committed
Release fortnet-python in version 0.2
1 parent 46330a2 commit f8b62d7

4 files changed

Lines changed: 36 additions & 8 deletions

File tree

README.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ Installation
1818

1919
|build status|
2020

21-
The package can be installed via conda-forge (available with first release)::
22-
23-
conda install fortnet-python
24-
25-
Alternatively, the package can be downloaded and installed via pip into the
26-
active Python interpreter (preferably using a virtual python environment) by::
21+
The package can be downloaded and installed via pip into the active Python
22+
interpreter (preferably using a virtual python environment) by::
2723

2824
pip install fortnet-python
2925

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pytest
2+
numpy
3+
h5py
4+
ase

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = fortnet-python
3-
version = 0.1
3+
version = 0.2
44
author = T. W. van der Heide
55
author_email = vanderhe@uni-bremen.de
66
url = https://github.com/vanderhe/fortnet-python
@@ -17,7 +17,6 @@ classifiers =
1717
Programming Language :: Python :: 3.7
1818
Programming Language :: Python :: 3.8
1919
Programming Language :: Python :: 3.9
20-
Programming Language :: Python :: 3.7
2120

2221
[options]
2322
include_package_data = True

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env python3
2+
from distutils.core import setup
3+
4+
5+
setup(
6+
name='fortnet-python',
7+
version='0.2',
8+
description='Python Tools for the Fortnet Software Package',
9+
author='T. W. van der Heide',
10+
url='https://github.com/vanderhe/fortnet-python',
11+
platforms="platform independent",
12+
package_dir={'': 'src'},
13+
packages=['fortformat'],
14+
classifiers=[
15+
'Intended Audience :: Developers',
16+
'License :: OSI Approved :: BSD License',
17+
'Programming Language :: Python :: 3 :: Only',
18+
'Programming Language :: Python :: 3.7',
19+
'Programming Language :: Python :: 3.8',
20+
'Programming Language :: Python :: 3.9',
21+
],
22+
long_description='''
23+
Python Tools for the Fortnet Software Package
24+
---------------------------------------------
25+
fortnet-python provides tools to generate compatible datasets as well as extract
26+
results obtained by the neural network implementation Fortnet.
27+
''',
28+
requires=['pytest', 'numpy', 'h5py', 'ase']
29+
)

0 commit comments

Comments
 (0)