Skip to content

Commit 6a2f018

Browse files
committed
update in setup
1 parent 341f1dc commit 6a2f018

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1+
import pathlib
12
import setuptools
23

4+
HERE = pathlib.Path(__file__).parent
5+
README = (HERE / "README.md").read_text()
6+
37
setuptools.setup(
48
name='TN_code',
5-
version='0.91',
9+
version='0.92',
610
description='Code gebruikt bij de opleiding TN van de Haagse Hogeschool',
11+
long_description=README,
12+
long_description_content_type="text/markdown",
713
url='https://hhs-tn.github.io',
814
license='MIT',
915
author='Derek Land',
1016
author_email='d.d.land@hhs.nl',
11-
packages=setuptools.find_packages(),
17+
packages=setuptools.find_packages(exclude=('voorbeelden'),),
1218
install_requires=['numpy',
1319
'matplotlib',
1420
'pandas',

0 commit comments

Comments
 (0)