-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (40 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
################################################################################
#
# Copyright (c) 2020 Baidu.com, Inc. All Rights Reserved
#
################################################################################
"""
Setup script.
Authors: sunmingming01([email protected])
Date: 2022/07/12 12:33:34
"""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='tripmaster',
version='1.0.12',
description='A High Level Framework for Deep Learning App and Pipelines for Paddle.',
url='https://github.com/baidu-research/tripmaster',
long_description_content_type="text/markdown",
long_description=README,
license='Apache',
packages=find_packages(include=["tripmaster", "tripmaster.*"]),
include_package_data=True,
author='Mingming Sun',
author_email='[email protected]',
keywords=['Deep Learning', 'Framework', 'Pipelines'],
)
install_requires = [
'addict>=2.4.0',
'bidict>=0.21.4',
'more-itertools>=8.12.0',
'networkx>=2.6.3',
'port-for>=0.6.1',
'schema>=0.7.5',
'tableprint>=0.9.1',
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)