msspec_python3/src/setup.py

54 lines
2.1 KiB
Python
Raw Normal View History

2019-11-15 11:16:06 +01:00
# coding: utf-8
2020-03-02 13:49:16 +01:00
# vim: set fdm=indent ts=4 sw=4 sts=4 et tw=80 ai cc=+0 mouse=a nu : #
2019-11-15 11:16:06 +01:00
from setuptools import setup, find_packages
from msspec.version import __version__
2020-03-02 13:49:16 +01:00
with open('requirements.txt', 'r') as fd:
requirements = fd.read().strip().split('\n')
2019-11-15 11:16:06 +01:00
setup(name='msspec',
setup_requires=['setuptools_scm'],
version=__version__,
2020-03-02 13:49:16 +01:00
author='Didier Sébilleau, Sylvain Tricot',
author_email='sylvain.tricot@univ-rennes1.fr',
maintainer='Sylvain Tricot',
maintainer_email='sylvain.tricot@univ-rennes1.fr',
url='https://msspec.cnrs.fr',
description=('A multiple scattering package for sepectroscopies using '
'electrons to probe materials'),
long_description="""MsSpec is a Fortran package to compute the
cross-section of several spectroscopies involving one (or more)
electron(s) as the probe. This package provides a python interface to
control all the steps of the calculation.
Available spectroscopies:
* Photoelectron diffraction
* Auger electron diffraction
* Low energy electron diffraction
* X-Ray absorption spectroscopy
* Auger Photoelectron coincidence spectroscopy
* Computation of the spectral radius""",
download_url='https://msspec.cnrs.fr/downloads.html',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Fortran',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Physics',
],
keywords='spectroscopy atom electron photon multiple scattering',
license='GPL',
2019-11-15 11:16:06 +01:00
include_package_data=True,
2019-11-18 17:33:32 +01:00
packages=find_packages(include='msspec.*'),
install_requires=requirements
)