-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (19 loc) · 783 Bytes
/
setup.py
File metadata and controls
19 lines (19 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(
name='TUToolBox',
version='1.0.0',
py_modules=['src.conf_init',
'src.TUNetLogin.login_with_command',
'src.TUNetLogin.login_with_config',
'src.TUNetLogin.readconfig',
'src.TULearn.TULearn.getHomework',
'src.TULearn.TULearn.getLessonfile',
'src.TULearn.TULearn.items',
'src.TULearn.TULearn.mailtest',
'src.TULearn.TULearn.middlewares',
'src.TULearn.TULearn.pipelines',
'src.TULearn.TULearn.settings',
'src.TULearn.TULearn.spiders.HWSpider',
'src.TULearn.TULearn.spiders.LFSpider',
'src.TULearn.TULearn.spiders.readconfig']
)