-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (41 loc) · 1.45 KB
/
setup.py
File metadata and controls
executable file
·44 lines (41 loc) · 1.45 KB
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
import setuptools
#from . import __author__, __version__
setuptools.setup(
name="torchKernel",
version='1.0.0',
description="",
author='Daniel Deidda',
author_email='danieldeidda@npl.co.uk',
license='Apache-2.0',
packages=["torchKernel",
"torchKernel.notebooks",
"torchKernel.utils",
"torchKernel.algorithms",
"torchKernel.architectures",
"torchKernel.kernel",
],
entry_points={
"console_scripts": [
"neuralKEM=artcertainty.algorithms.neuralKEM:main"
],
},
python_requires='>=3.10',
install_requires=['numpy>=1.21',
'torch>=1.13.0',
'tqdm>=4.66.4',
'brainweb>=1.6.2',
'deprecation>=2.1.0',
'pytorch-ignite>=0.5.1',
'seaborn>=0.13.2',
'pandas>=2.2.3',
'matplotlib>=3.10',
'type-docopt>= 0.8.2'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
#'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.10',
],
#cmdclass={"test": Run_TestSuite, "tox": ToxTest},
)