-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.14 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
"""Setup script for pctsp."""
from dotenv import load_dotenv
from skbuild import setup
from setuptools import find_packages
load_dotenv()
setup(
author="Patrick O'Hara",
author_email="patrick.h.o-hara@warwick.ac.uk",
description="Algorithms for the Prize-collecting Travelling Salesperson Problem",
install_requires=[
"colorlog>=4.6.2",
"plotly>=4.14.1",
"pydantic>=1.8.0",
"pyscipopt>=4.0.0",
"tspwplib>=0.7.2",
"typer>=0.4.0",
],
name="pctsp",
packages=find_packages(),
python_requires=">=3.8",
use_scm_version={"fallback_version": "1.0.0"},
license="MIT License",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
cmake_args=['-DPCTSP_BUILD_TESTS:BOOL=OFF'],
cmake_source_dir=".",
entry_points={"console_scripts":["pctsp=pctsp.__main__:app"]},
)