-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ivapylibs/fix
Add find_packages and add git+ dependencies
- Loading branch information
Showing
2 changed files
with
25 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# perceiver | ||
|
||
Segmentation-based tracking algorithms and related. | ||
|
||
## Install | ||
|
@@ -12,11 +13,11 @@ Install the following repositories from the source: | |
|
||
``` | ||
git clone [email protected]:ivapylibs/perceiver.git | ||
pip3 install -e perceiver/ | ||
pip3 install -e perceiver[testing] | ||
``` | ||
|
||
The test files are shell command line executable and should work when | ||
invoked, presuming that pip installation has been performed. If no | ||
modifications to the source code will be performed then the ``-e`` flag | ||
invoked, presuming that pip installation has been performed. If no | ||
modifications to the source code will be performed then the `-e` flag | ||
is not necessary (e.g., use the flag if the underlying code will be | ||
modified). |
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 |
---|---|---|
@@ -1,7 +1,21 @@ | ||
from setuptools import setup | ||
setup(name='perceiver', | ||
version='1.0', | ||
description='Classes implementing detection based processing pipelines.', | ||
author='IVALab', | ||
packages=['perceiver'] | ||
) | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="perceiver", | ||
version="1.0.1", | ||
description="Classes implementing detection based processing pipelines.", | ||
author="IVALab", | ||
packages=find_packages(), | ||
install_requires=[ | ||
"numpy", | ||
"matplotlib", | ||
"Lie @ git+https://github.com/ivapylibs/Lie.git", | ||
], | ||
extras_require={ | ||
"testing": [ | ||
"improcessor @ git+https://github.com/ivapylibs/improcessor.git", | ||
"detector @ git+https://github.com/ivapylibs/detector.git", | ||
"trackpointer @ git+https://github.com/ivapylibs/trackpointer.git", | ||
] | ||
}, | ||
) |