-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (33 loc) · 1.22 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="slgbuilder",
version="0.2.1",
author="Niels Jeppesen",
author_email="niejep@dtu.dk",
description="A Python package for building and cutting sparse layered s-t graphs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Skielex/slgbuilder",
packages=["slgbuilder"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
],
install_requires=["numpy", "scipy", "scikit-learn", "thinmaxflow", "thinqpbo"],
extra_require={
"all": ["thinhpf", "ortools"],
"ortools": ["ortools"],
"thinhpf": ["thinhpf"],
},
)