-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (40 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
36
37
38
39
40
41
42
43
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="[email protected]",
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',
install_requires=[
"certifi==2019.3.9",
"cycler==0.10.0",
"kiwisolver==1.1.0",
"matplotlib==3.1.1",
"numpy==1.22.0",
"pandas==0.25.1",
"plyfile==0.7",
"pyparsing==2.4.2",
"python-dateutil==2.8.0",
"pytz==2019.2",
"scipy==1.3.1",
"six==1.12.0",
],
)