forked from mapmanager/brightest-path-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.51 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
52
import os
import sys
from setuptools import setup, find_packages
VERSION = "1.0.13"
packages = find_packages(exclude=["tests"])
print(f"found packages: {packages}")
setup_requires = ['numpy']
# load the readme
_thisPath = os.path.abspath(os.path.dirname(__file__))
with open(os.path.abspath(_thisPath+"/README.md")) as f:
long_description = f.read()
setup(
name="brightest-path-lib",
description="A library of path-finding algorithms to find the brightest path between points in an image.",
long_description=long_description,
long_description_content_type = 'text/markdown',
author="Vasudha Jha",
url="https://github.com/mapmanager/brightest-path-lib",
project_urls={
"Issues": "https://github.com/mapmanager/brightest-path-lib/issues",
"CI": "https://github.com/mapmanager/brightest-path-lib/actions",
"Changelog": "https://github.com/mapmanager/brightest-path-lib/releases",
},
license="GNU General Public License, Version 3",
version=VERSION,
#packages=["brightest_path_lib"],
#packages=find_packages(),
packages=packages,
setup_requires=setup_requires,
install_requires=["numpy"],
extras_require={
'dev': [
'mkdocs',
'mkdocs-material',
'mkdocs-jupyter',
'mkdocstrings',
'mkdocs-material-extensions'
],
"test": [
"pytest",
"pytest-cov",
"scikit-image",
"pooch"
]
},
python_requires=">=3.7",
)