-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 841 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 841 Bytes
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
import setuptools
# setup(
# name='adaptive_boxes',
# version='0.1',
# scripts=['adabox']
# )
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="adaptive-boxes",
version="0.0.4",
author="Juan Francisco Chango",
author_email="jnfran92@gmail.com",
description="Python package for rectangular decomposition of 2D scenes/binary images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jnfran92/adaptive-boxes",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Science/Research',
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)