-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.13 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
from distutils.core import setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
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="[email protected]",
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']})