forked from collinleiber/LMU_Master_Practical_SoSe24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 796 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
import practical
def _load_readme():
with open("README.md", "r") as file:
readme = file.read()
return readme
setup(
name='practical',
version=practical.__version__,
packages=find_packages(exclude=["*tests"]),
url='https://github.com/collinleiber/LMU_Master_Practical_SoSe24',
author='Collin Leiber',
author_email='[email protected]',
description='Dummy project for the LMU master practical summer semester 2024',
long_description=_load_readme(),
long_description_content_type="text/markdown",
python_requires='>=3.7',
install_requires=['numpy',
'scipy',
'scikit-learn',
'matplotlib',
'pandas']
)