-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (33 loc) · 1.16 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
from io import open as io_open
import os
from setuptools import setup, find_packages
src_dir = os.path.abspath(os.path.dirname(__file__))
README_rst = ''
fndoc = os.path.join(src_dir, 'README.rst')
with io_open(fndoc, mode='r', encoding='utf-8') as fd:
README_rst = fd.read()
setup(
name='amypad',
version='2.0.1',
description='Alias for amypet',
long_description=README_rst,
long_description_content_type='text/x-rst',
license='MPL 2.0',
url='https://github.com/AMYPAD/AmyPET',
maintainer='Casper da Costa-Luis',
maintainer_email='[email protected]',
platforms=['any'],
install_requires=['amypet'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
keywords='pet alzheimers',
)