-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 856 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='deepcalo',
version='0.2.2',
author='Frederik Faye',
author_email='[email protected]',
description='Package for doing deep supervised learning on ATLAS data.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gitlab.com/ffaye/deepcalo',
packages=setuptools.find_packages(),
install_requires=['numpy>=1.15.4',
'keras>=2.2.4',
'h5py>=2.8.0',
'joblib>=0.13.0',
'keras-drop-block>=0.4.0'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)