forked from liznerski/fcdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 796 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
27
28
29
30
31
32
33
import os.path as pt
from setuptools import setup, find_packages
PACKAGE_DIR = pt.abspath(pt.join(pt.dirname(__file__)))
packages = find_packages(PACKAGE_DIR)
package_data = {
package: [
'*.py',
'*.txt',
'*.json',
'*.npy'
]
for package in packages
}
with open(pt.join(PACKAGE_DIR, 'requirements.txt')) as f:
dependencies = [l.strip(' \n') for l in f]
setup(
name='fcdd',
version='1.1.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6'
],
keywords='deep-learning anomaly-detection explainability fcdd fully convolutional cnn',
packages=packages,
package_data=package_data,
install_requires=dependencies,
)