-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (69 loc) · 2.31 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
DESCRIPTION = '\n\n'.join(open(os.path.join(HERE, _)).read() for _ in [
'README.md',
'CHANGES.md',
])
REQUIREMENTS = [
'crosscompute',
]
ENTRY_POINTS = """\
[paste.app_factory]
main = count_buildings:main
[console_scripts]
train_classifier =\
count_buildings.scripts.train_classifier:start
count_buildings =\
count_buildings.run:start
evaluate_counts =\
count_buildings.scripts.evaluate_counts:start
get_tiles_from_image =\
count_buildings.scripts.get_tiles_from_image:start
get_examples_from_points =\
count_buildings.scripts.get_examples_from_points:start
get_dataset_from_examples =\
count_buildings.scripts.get_dataset_from_examples:start
get_batches_from_datasets =\
count_buildings.scripts.get_batches_from_datasets:start
get_marker_from_batches =\
count_buildings.scripts.get_marker_from_batches:start
get_array_shape_from_batches =\
count_buildings.scripts.get_array_shape_from_batches:start
get_index_from_batches =\
count_buildings.scripts.get_index_from_batches:start
get_arrays_from_image =\
count_buildings.scripts.get_arrays_from_image:start
get_batches_from_arrays =\
count_buildings.scripts.get_batches_from_arrays:start
get_counts_from_probabilities =\
count_buildings.scripts.get_counts_from_probabilities:start
get_preview_from_points =\
count_buildings.scripts.get_preview_from_points:start
normalize_image =\
count_buildings.scripts.normalize_image:start
[crosscompute.tools]
describe = count_buildings:describe
include = count_buildings:includeme
"""
setup(
name='count_buildings',
version='0.4',
description='count_buildings',
long_description=DESCRIPTION,
classifiers=[
'Programming Language :: Python',
'Framework :: Pyramid',
'Framework :: Pyramid :: CrossCompute',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
author='Roy Hyunjin Han',
author_email='[email protected]',
url='https://github.com/invisibleroads/find-buildings-cuda-convnet',
keywords='web pyramid pylons crosscompute',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
entry_points=ENTRY_POINTS)