-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 741 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
exec(open('demud/version.py').read()) # brings in a "version" variable
with open('README.md') as f:
long_description = f.read()
setup(name='DEMUD',
version=version,
description='DEMUD novelty detection',
long_description=long_description,
author='Kiri Wagstaff',
author_email='kiri.wagstaff@jpl.nasa.gov',
url='https://github.com/wkiri/DEMUD',
packages=['demud', 'demud.dataset', 'demud.log'],
install_requires=['matplotlib',
'numpy',
'scipy',
'pillow'],
entry_points={'console_scripts': ['demud=demud.demud:main']},
python_requires='>=3.0',
)