-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (31 loc) · 1.16 KB
/
setup.py
File metadata and controls
executable file
·36 lines (31 loc) · 1.16 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
"""nccd
https://github.com/papamarkou/nccd
"""
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='nccd',
version='0.0.1',
description='Nuclear canister corrosion detector',
long_description=long_description,
url='https://github.com/papamarkou/nccd',
author='Theodore Papamarkou, Hayley Guy, Bryce Kroencke, Jordan Miller, Preston Robinette, Daniel Schultz',
author_email='papamarkout@ornl.gov',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords=['deep learning', 'convolutional neural networks', 'resnets', 'nuclear canisters', 'corrosion detection'],
package_dir={'nccd': 'nccd'},
install_requires=['fastai', 'numpy', 'scikit-learn', 'torch',]
)