-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 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
from setuptools import setup, find_packages
setup(
name="concavehull_evaluation",
version="0.0.1",
packages=['concave_evaluation'],
scripts=[],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
# polylidar
install_requires=['Click', 'numpy', 'colorama','shapely','scipy', 'matplotlib','descartes', 'pandas', 'seaborn', 'rasterio', 'sklearn', 'shapely_geojson', 'psycopg2', 'tqdm'],
entry_points='''
[console_scripts]
concave=concave_evaluation.scripts.cli:cli
''',
# package_data={
# # If any package contains *.txt or *.rst files, include them:
# 'challenge': ['*.txt', '*.rst', '*.md', '*.pyx', '*.json'],
# 'afrl': ['*.xml', '*.html', '*.md', '*.json'],
# 'lmcp': ['*.xml', '*.html', '*.md', '*.json'],
# },
# metadata to display on PyPI
author="Jeremy Castagno",
author_email="[email protected]",
description="Concave Hull Evaluation",
license="MIT",
keywords="concave hull benchmark",
url="https://github.com/JeremyBYU/concavehull-evaluation", # project home page, if any
project_urls={
"Bug Tracker": "https://github.com/JeremyBYU/concavehull-evaluation/issues",
}
)