added basic requirements.txt, setup.py

This commit is contained in:
Tobias Schmidl 2021-03-01 09:53:07 +01:00
parent 0af8316b79
commit bc09b49a82
2 changed files with 31 additions and 0 deletions

10
requirements.txt Normal file
View file

@ -0,0 +1,10 @@
eradicate>=2.0.0
isort>=5.5.0
mccabe>=0.6.0
mypy>=0.812
pycodestyle>=2.6.0
pydocstyle>=5.1.0
pyflakes>=2.2.0
pylama>=7.7.0
pylint>=2.6.0
yapf>=0.27.0

21
setup.py Normal file
View file

@ -0,0 +1,21 @@
#! /usr/bin/env python3
"""Setup script for <project>."""
from setuptools import setup # type: ignore
# import <project>
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
setup()
# setup(name="<project name>",
# version=<project>.__version__,
# author=<project>.__author__,
# description=<project>.__doc__,
# license=<project>.__license__,
# long_description=LONG_DESCRIPTION,
# install_requires=["List", "Of", "Dependencies", "with", "a", "format", "like", "requirements.txt"],
# scripts=["<project.py>"],
# url="<Homepage>",
# classifiers=[])