-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (52 loc) · 1.7 KB
/
setup.py
File metadata and controls
57 lines (52 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from pathlib import Path
from setuptools import setup, find_packages
README = Path(__file__).with_name("README.md").read_text(encoding="utf-8")
setup(
name="bitbox",
version="2025.10.dev2", # PEP 440: YYYY.MM.devN
description="Behavioral Imaging Toolbox",
long_description=README,
long_description_content_type="text/markdown",
author="ComPsy Group",
author_email="tuncb@chop.edu",
url="https://github.com/compsygroup/bitbox",
project_urls={
"Documentation": "https://github.com/compsygroup/bitbox/wiki",
"Issues": "https://github.com/compsygroup/bitbox/issues",
},
license="CC-BY-NC-4.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: Other/Proprietary License", # CC-BY-NC: no official Trove; use this
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
package_dir={"": "src"},
packages=find_packages("src"),
# Include package data inside wheels
include_package_data=True,
package_data={"bitbox": ["data/*.csv"]}, # keep if data lives at src/bitbox/data/*.csv
zip_safe=False,
install_requires=[
"scipy",
"cvxpy",
"numpy",
"scikit-learn",
"python-dateutil",
"PyWavelets",
"matplotlib",
"pandas",
"requests",
"paramiko",
"plotly",
"opencv-python",
"pillow",
"kaleido",
"scikit-image",
],
)