-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 951 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="garjus",
version="1.2.1",
author="Brian D. Boyd",
author_email="brian.d.boyd@vumc.org",
description="Python package for managing imaging research projects in REDCap and XNAT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ccmvumc/garjus",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
install_requires=[
"pandas",
"pycap",
"pyxnat",
"dax",
"click",
"sphinx",
"pydot",
"plotly",
"dash_bootstrap_components",
"dash_bootstrap_templates",
],
entry_points={"console_scripts": ["garjus = garjus.cli:cli"]},
)