-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
49 lines (46 loc) · 1.53 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
from pathlib import Path
from setuptools import find_packages, setup
readme_file = Path(__file__).parent / 'README.md'
with readme_file.open() as f:
long_description = f.read()
setup(
name='isic-challenge-scoring',
description='Submission scoring for the ISIC Challenge',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
url='https://github.com/ImageMarkup/isic-challenge-scoring',
project_urls={
'Bug Reports': 'https://github.com/ImageMarkup/isic-challenge-scoring/issues',
'Source': 'https://github.com/ImageMarkup/isic-challenge-scoring',
},
maintainer='ISIC Archive',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.8',
install_requires=[
'click',
'click-pathlib',
'numpy',
'pandas>=1.1',
'pillow>=7',
'rdp',
'scipy',
'scikit-learn',
'zipfile-deflate64',
],
packages=find_packages(),
entry_points="""
[console_scripts]
isic-challenge-scoring=isic_challenge_scoring.__main__:cli
""",
)