-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (30 loc) · 819 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
28
29
30
31
32
import pathlib
import setuptools
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setuptools.setup(
name="TN_code",
version="1.4",
description="Code gebruikt bij de opleiding TN van de Haagse Hogeschool",
long_description=README,
long_description_content_type="text/markdown",
url="https://hhs-tn.github.io",
license="MIT",
author="Derek Land",
author_email="[email protected]",
packages=setuptools.find_packages(
exclude=("voorbeelden"),
),
install_requires=[
"numpy",
"matplotlib",
"pandas",
"sympy",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Natural Language :: Dutch",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)