Setup skript angepasst

This commit is contained in:
Markus Clauß 2022-11-22 12:28:10 +01:00
parent 38f6b18a13
commit caadb4bbad
2 changed files with 52 additions and 18 deletions

49
setup.cfg Normal file
View File

@ -0,0 +1,49 @@
[metadata]
name = pytestpavement
description = Analysis Pavment Test Data
author = Markus Clauß
author_email = markus.clauss@tu-dresden.de
url = https://git.linsenbruch.myds.me/Arbeit/pytest
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
keywords =
project_urls =
Source = https://git.linsenbruch.myds.me/Arbeit/pytest
[options]
packages = find:
python_requires = >=3.9
setup_requires = setuptools_scm
install_requires =
lmfit
pandas
numpy
scipy
matplotlib
seaborn
mongoengine
[options.packages.find]
where=src
[rstcheck]
report=warning
ignore_substitutions=release
ignore_roles=scipydoc,numpydoc
ignore_directives=autoclass,autodoc,autofunction,automethod,jupyter-execute,math
[flake8]
ignore = E121,E123,E126,E226,W503,W504,E501,E731

View File

@ -1,21 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import find_packages, setup import setuptools
setup( if __name__ == "__main__":
name='PyTestPavement', setuptools.setup()
version='0.1',
author='Markus Clauß',
author_email='markus.clauss@tu-dresden.de',
install_requires=[
'lmfit',
'pandas',
'numpy',
'scipy',
'matplotlib', #remove later
'seaborn', #remove later
'mongoengine',
],
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True)