diff --git a/README.rst b/README.rst index b86fa1d..fcdc700 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3795653 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +pytest +numpy +h5py +ase diff --git a/setup.cfg b/setup.cfg index 896899e..5cbe4dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5d1b2d3 --- /dev/null +++ b/setup.py @@ -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'] +)