-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.52 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from pathlib import Path
import setuptools
VERSION = "3.0"
NAME = "capablanca"
INSTALL_REQUIRES = [
"numpy>=2.2.1",
"scipy>=1.15.0",
"networkx[default]>=3.4.2"
]
setuptools.setup(
name=NAME,
version=VERSION,
description="Estimating the Minimum Vertex Cover with an approximation factor of < 2 for an undirected graph encoded as a Boolean adjacency matrix stored in a file.",
url="https://github.com/frankvegadelgado/capablanca",
project_urls={
"Source Code": "https://github.com/frankvegadelgado/capablanca",
},
author="Frank Vega",
author_email="[email protected]",
license="MIT License",
classifiers=[
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
],
python_requires=">=3.10",
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["capablanca"],
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'cover = capablanca.app:main',
'test_cover = capablanca.test:main'
]
}
)