-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 818 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (25 loc) · 818 Bytes
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
# import setuptools
from setuptools import setup
# import distutils.command.build
# from setuptools.command.install import install
# copy store imports
# import os
# from shutil import copyfile
setup(
name="hashed_loop",
version="0.1.2",
description="Loop closure for use with Rosetta built with xbin and getpy",
author="Dmitri Zorine",
author_email="d.zorine@gmail.com",
license="MIT",
packages=["hashed_loop"],
zip_safe=False,
install_requires=["click", "xbin", "getpy", "h5py", "npose"],
entry_points={
"console_scripts": [
"import_default_loop_table = hashed_loop.import_default_loop_table:main",
"close_loop = hashed_loop.close_loop:main",
"build_hash_loop_table = hashed_loop.build_hash_loop_table:main",
]
},
)