-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
577deed
commit accaa9f
Showing
2 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,18 +91,22 @@ def copy_test_file(self, src_file): | |
copyfile(src_file, dest_file) | ||
copymode(src_file, dest_file) | ||
|
||
requirements = [ ] | ||
requirements = ["numpy"] | ||
from os import path | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='pydegensac', | ||
version='0.1.1', | ||
version='0.1.2', | ||
author='Ondra Chum, Dmytro Mishkin', | ||
author_email='[email protected]', | ||
license='MIT', | ||
url = 'https://github.com/ducha-aiki/pydegensac', # Provide either the link to your github or to your website | ||
download_url = 'https://github.com/ducha-aiki/pydegensac/archive/v_0.11.tar.gz', | ||
download_url = 'https://github.com/ducha-aiki/pydegensac/archive/v_0.12.tar.gz', | ||
description='Advanced RANSAC (DEGENSAC) with bells and whistles for H and F estimation', | ||
long_description='', | ||
long_description=long_description, | ||
packages=find_packages('src'), | ||
package_dir={'':'src'}, | ||
ext_modules=[CMakeExtension('pydegensac/pydegensac')], | ||
|