-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 707 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
import os
from distutils.core import setup
folder = os.path.dirname(os.path.realpath(__file__))
requirements_path = os.path.join(folder, 'requirements.txt')
install_requires = []
if os.path.isfile(requirements_path):
with open(requirements_path) as f:
install_requires = f.read().splitlines()
setup(name='undeepvo',
version='0.1',
description='Realization of undeepvo method',
author='Deep project team',
author_email='',
package_dir={},
packages=["undeepvo", "undeepvo.utils", "undeepvo.models", "undeepvo.data", "undeepvo.data.supervised", "undeepvo.problems", "undeepvo.criterion"],
install_requires=install_requires
)