-
Notifications
You must be signed in to change notification settings - Fork 146
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
ff34807
commit 1226b32
Showing
15 changed files
with
509 additions
and
239 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
|
@@ -8,9 +8,11 @@ | |
|
||
import setuptools | ||
import platform | ||
from setuptools import setup, find_namespace_packages | ||
|
||
REQUIREMENTS_PATH = 'requirements.txt' | ||
ARM_REQUIREMENTS_PATH = 'requirements_arm.txt' | ||
GPU_REQUIREMENTS_PATH = 'requirements_gpu.txt' | ||
|
||
with open("docs/project_description.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
@@ -21,18 +23,21 @@ | |
with open(ARM_REQUIREMENTS_PATH, "r") as f: | ||
arm_requirements = f.read().splitlines() | ||
|
||
with open(GPU_REQUIREMENTS_PATH, "r") as f: | ||
gpu_requirements = f.read().splitlines() | ||
|
||
# Setup configuration | ||
setuptools.setup( | ||
name="Simba-UW-tf-dev", | ||
version="2.2.4", | ||
version="2.2.7", | ||
author="Simon Nilsson, Jia Jie Choong, Sophia Hwang", | ||
author_email="[email protected]", | ||
description="Toolkit for computer classification and analysis of behaviors in experimental animals", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/sgoldenlab/simba", | ||
install_requires=requirements, | ||
extras_require={'arm': [arm_requirements]}, | ||
extras_require={'arm': [arm_requirements], "gpu": [gpu_requirements]}, | ||
license='GNU General Public License v3 (GPLv3)', | ||
packages=setuptools.find_packages(exclude=["*.tests", | ||
"*.tests.*", | ||
|
@@ -43,11 +48,13 @@ | |
"sandbox", | ||
"sandbox.*", | ||
]), | ||
# packages=find_namespace_packages(include=["simba*"], | ||
# exclude=["*.tests", "*.tests.*", "tests.*", "tests", "__pycache__", "__pycache__.*", "pose_configurations_archive", "pose_configurations_archive.*", "sandbox", "sandbox.*"]), | ||
include_package_data=True, | ||
classifiers=( | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
), | ||
], | ||
entry_points={'console_scripts':['simba=simba.SimBA:main'],} | ||
) |
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
Oops, something went wrong.