We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341f1dc commit 6a2f018Copy full SHA for 6a2f018
1 file changed
setup.py
@@ -1,14 +1,20 @@
1
+import pathlib
2
import setuptools
3
4
+HERE = pathlib.Path(__file__).parent
5
+README = (HERE / "README.md").read_text()
6
+
7
setuptools.setup(
8
name='TN_code',
- version='0.91',
9
+ version='0.92',
10
description='Code gebruikt bij de opleiding TN van de Haagse Hogeschool',
11
+ long_description=README,
12
+ long_description_content_type="text/markdown",
13
url='https://hhs-tn.github.io',
14
license='MIT',
15
author='Derek Land',
16
author_email='d.d.land@hhs.nl',
- packages=setuptools.find_packages(),
17
+ packages=setuptools.find_packages(exclude=('voorbeelden'),),
18
install_requires=['numpy',
19
'matplotlib',
20
'pandas',
0 commit comments