-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (34 loc) · 1.45 KB
/
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
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
#from distutils.core import setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
install_reqs = parse_requirements('requirements.txt', session='hack')
reqs = [str(ir.req) for ir in install_reqs]
setup(name='adlframework',
version='1.4',
description='Deep learning Streamlined Process',
author='George Alexander Reichenbach',
author_email='[email protected]',
url='https://student.andover.edu',
packages=['adlframework',
"adlframework.retrievals",
"adlframework.augmentations",
"adlframework.dataentity",
"adlframework.nets",
"adlframework.caches",
"adlframework.controllers",
"adlframework.controllers.audio",
"adlframework.controllers.arff",
"adlframework.controllers.classification",
"adlframework.controllers.fits",
"adlframework.controllers.general",
"adlframework.controllers.images",
"adlframework.controllers.lstm",
"adlframework.controllers.midis"],
install_requires=reqs,
keywords = ['deep learning', 'data framework', 'data', 'data manipulation', 'data augmentation'],
download_url = 'https://github.com/Reichenbachian/adlframework/archive/0.1.tar.gz'
)