-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (36 loc) · 1.43 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
import sys
import os.path
from setuptools import setup, find_packages
PACKAGE_NAME = 'arcana'
# Get version from module inside package
sys.path.insert(0, os.path.join(os.path.dirname(__file__),
PACKAGE_NAME))
from __about__ import __version__, install_requires, tests_require # noqa pylint: disable=no-name-in-module
sys.path.pop(0)
setup(
name=PACKAGE_NAME,
version=__version__,
author='Tom G. Close',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/monashbiomedicalimaging/arcana',
license='The Apache Software Licence 2.0',
description=(
'Abstracted repository-centric analysis framework'),
long_description=open('README.rst').read(),
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'test': tests_require},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps."],
keywords='repository analysis')