-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathsetup.py
46 lines (41 loc) · 1.25 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
"""Setup for pysift."""
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
# Runtime requirements.
inst_reqs = [
"numpy",
"opencv-python",
]
extra_reqs = {
"test": ["pytest", "pytest-benchmark", "pytest-cov"],
"dev": ["pytest", "pytest-benchmark", "pytest-cov"],
"examples": ["matplotlib"],
"docs": ["mkdocs"],
}
setup(
name="pysift",
version="0.0.1",
python_requires=">=3.5",
description="Python implementation of the SIFT algorithm.",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
],
keywords="Image processing",
author="Russ Islam",
author_email="[email protected]",
url="https://github.com/rmislam/PythonSIFT",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=True,
install_requires=inst_reqs,
extras_require=extra_reqs,
)