|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=62.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "element-moseq" |
| 7 | +version = "0.3.1" |
| 8 | +description = "Keypoint-MoSeq DataJoint Element" |
| 9 | +readme = "README.md" |
| 10 | +license = {text = "MIT"} |
| 11 | +authors = [ |
| 12 | + { name = "DataJoint", email = "[email protected]"} |
| 13 | +] |
| 14 | +keywords = ["neuroscience", "keypoint-moseq", "science", "datajoint","workflow"] |
| 15 | +classifiers = [ |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | +] |
| 21 | +requires-python = ">=3.10,<3.12" |
| 22 | +dependencies = [ |
| 23 | + "datajoint>=0.14.0", |
| 24 | + "ipykernel>=6.0.1", |
| 25 | + "ipywidgets", |
| 26 | + "opencv-python", |
| 27 | + "keypoint-moseq==0.4.8", |
| 28 | + "dynamax==0.1.4", |
| 29 | + "jax==0.4.13", |
| 30 | + "jaxlib==0.4.13", |
| 31 | + "jaxtyping==0.2.14", |
| 32 | + "jupyter_bokeh", |
| 33 | +] |
| 34 | + |
| 35 | +[project.optional-dependencies] |
| 36 | +elements = [ |
| 37 | + "element-lab @ git+https://github.com/datajoint/element-lab.git", |
| 38 | + "element-session @ git+https://github.com/datajoint/element-session.git", |
| 39 | + "element-interface @ git+https://github.com/datajoint/element-interface.git", |
| 40 | + "element-animal @ git+https://github.com/datajoint/element-animal.git", |
| 41 | +] |
| 42 | +tests = [ |
| 43 | + "pytest", |
| 44 | + "pytest-cov", |
| 45 | + "shutils", |
| 46 | +] |
| 47 | + |
| 48 | +[project.urls] |
| 49 | +Homepage = "https://github.com/datajoint/element-moseq" |
| 50 | +Repository = "https://github.com/datajoint/element-moseq" |
| 51 | +Documentation = "https://github.com/datajoint/element-moseq" |
| 52 | + |
| 53 | +[tool.setuptools.packages.find] |
| 54 | +exclude = ["contrib", "docs", "tests*"] |
| 55 | + |
| 56 | +[tool.setuptools.package-data] |
| 57 | +"*" = ["*.md", "*.txt", "*.yml", "*.yaml"] |
| 58 | + |
| 59 | +[tool.setuptools.exclude-package-data] |
| 60 | +"*" = ["*.pyc", "*.pyo", "*.pyd", "__pycache__", "*.so"] |
0 commit comments