-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
61 lines (54 loc) · 1.11 KB
/
setup.cfg
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# https://pyscaffold.org/en/stable/usage.html
[metadata]
name = skit
description = Module for the ML.
author = Yannick Stephan
author_email = [email protected]
license = MIT
license_files = LICENSE.txt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/YanSteph
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find_namespace:
include_package_data = True
package_dir =
=src
python_requires >=3.7
# Add here dependencies of your project (semicolon/line-separated)
install_requires =
matplotlib
numpy
pandas
ipython
scikit-learn
pyyaml
nbformat
nbconvert
requests
typing_extensions
h5py
[options.packages.find]
where = src
exclude =
tests
[options.package_data]
* =
*.svg
*.png
*.css
*.mplstyles
*.html
*.txt
[options.entry_points]
console_scripts =
skit = skit.main:run
[pyscaffold]
# PyScaffold's parameters when the project was created.
# This will be used when updating. Do not change!
version = 4.5
package = skit