-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (38 loc) · 1.33 KB
/
setup.py
File metadata and controls
executable file
·40 lines (38 loc) · 1.33 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
from pathlib import Path
from setuptools import setup, find_packages
long_description = Path("README.md").read_text(encoding="utf-8")
setup(
name="brainimagelibrary",
version="0.0.25",
description="Brain Image Library API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/brain-image-library/py-brain-sdk",
project_urls={
"Bug Tracker": "https://github.com/brain-image-library/py-brain-sdk/issues",
"Documentation": "https://www.brainimagelibrary.org",
},
author="Ivan Cao-Berg",
author_email="icaoberg@psc.edu",
license="GPL-3.0",
keywords=["neuroscience", "brain", "microscopy", "image", "library"],
python_requires=">=3.9",
install_requires=[
"pandas>=2.0",
"requests>=2.28",
"tabulate>=0.9",
"python-magic>=0.4.27",
"tqdm>=4.65",
"humanize>=4.0",
],
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)