Skip to content

Commit

Permalink
Merge pull request #3 from ivapylibs/fix
Browse files Browse the repository at this point in the history
Add find_packages and add git+ dependencies
  • Loading branch information
acmiyaguchi authored Feb 17, 2023
2 parents 9f27ffc + c5fdb04 commit cba51f8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 10 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# perceiver

Segmentation-based tracking algorithms and related.

## Install
Expand All @@ -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).
28 changes: 21 additions & 7 deletions setup.py
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",
]
},
)

0 comments on commit cba51f8

Please sign in to comment.