-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.71 KB
/
setup.py
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
from os import path
from setuptools import setup, find_packages
with open(path.join(path.dirname(path.abspath(__file__)), "README.md")) as f:
readme = f.read()
setup(
name="chris_plugin",
version="0.4.0",
packages=find_packages(where="src"),
package_dir={"": "src", "chris_plugin": "src/chris_plugin"},
url="https://github.com/FNNDSC/chris_plugin",
project_urls={
"Documentation": "https://fnndsc.github.io/chris_plugin/",
"Source": "https://github.com/FNNDSC/chris_plugin",
"Tracker": "https://github.com/FNNDSC/chris_plugin/issues",
},
license="MIT",
author="Jennings Zhang",
author_email="[email protected]",
description="ChRIS plugin helper",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">= 3.8",
install_requires=['importlib-metadata; python_version<"3.10"'],
extras_require={
"none": [],
"dev": ["pytest~=7.2", "pytest-mock~=3.10", "pytest-cov~=4.0.0"],
},
entry_points={
"console_scripts": [
"chris_plugin_info = chris_plugin.tool.chris_plugin_info:main"
]
},
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
)