-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
50 lines (46 loc) · 1.42 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
[bumpversion]
current_version = 0.6.0
commit = False
tag = False
[metadata]
name = pylinkage
version = attr: pylinkage.__version__
author = Hugo Farajallah
description = Build and optimize planar linkages using PSO
license = MIT License
url = https://hugofara.github.io/pylinkage/
project_urls =
Changelog=https://hugofara.github.io/pylinkage/changeloglink.html
Source=https://github.com/HugoFara/pylinkage
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Intended Audience :: Science/Research
Intended Audience :: Legal Industry
Intended Audience :: End Users/Desktop
Operating System :: OS Independent
keywords = linkage, mechanism, optimization, particle swarm optimization
zip_safe = true
[options]
packages = pylinkage, examples
install_requires =
numpy
matplotlib
pyswarms
tqdm
test_suite = tests
[bumpversion:file:pylinkage/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:sphinx/conf.py]
search = release = '{current_version}'
replace = release = '{new_version}'