-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.13 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.13 KB
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
"""This is the setup file to install the bb_stitcher."""
from pip.req import parse_requirements
from setuptools import setup
install_reqs = parse_requirements('requirements.txt', session=False)
reqs = [str(ir.req) for ir in install_reqs]
dep_links = [str(req_line.url) for req_line in install_reqs]
setup(
name='bb_stitcher',
version='0.0.0.dev6',
description='Stitch images from different cam positions,'
'with an affine transformation',
long_description='',
entry_points={
'console_scripts': [
'bb_stitcher = bb_stitcher.scripts.bb_stitcher:main'
]
},
url='https://github.com/gitmirgut/bb_stitcher',
install_requires=reqs,
dependency_links=dep_links,
author='gitmirgut',
author_email="gitmirgut@users.noreply.github.com",
packages=['bb_stitcher', 'bb_stitcher.picking', 'bb_stitcher.scripts'],
license='Apache License 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5'
],
package_data={
'bb_stitcher': ['*.ini']
}
)