-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
61 lines (42 loc) · 1.27 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
[metadata]
# the name of the package
name = lk_heuristic
# version of the package
version = 0.0.4
# author name
author = Frederico de Castro Neto
# author email
author_email = [email protected]
# short description
description = Lin-Kernighan Heuristic in Python
# long description (using the readme.md file)
long_description = file: README.md
# long description type
long_description_content_type = text/markdown
# package main url
url = https://github.com/kikocastroneto/lk_heuristic
# keyworkds for the package
keywords = tsp, lk, lkh
# license used for the package
license = MIT
# additional metada for pip
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
# the directory that contains all source files
package_dir =
= src
# additional packages required in project (using find to automatically collect packages)
packages = find:
# adding minimum python version
python_requires = >=3.7
# include additional data to package (not only python files), which are detailed in manifest.in file
include_package_data = True
# additional dependencies
install_requires =
plotly==5.5.0
[options.packages.find]
# the path to look for dependencies used at packages options
where = src