-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·41 lines (36 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
38
39
40
41
#!/usr/bin/env python
import os
from setuptools import setup
def get_long_description(file_name):
"""Gets the long description from the specified file's name.
:param file_name: The file's name
:type file_name: str
:return: The content of the file
:rtype: str
"""
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
if __name__ == '__main__':
setup(
name='design',
version='1.0.2',
description='A package for the course *Design III*',
author=('Antoine Gagne'
'Nadia Chicoine <[email protected]>,'
'Alexandre Tremblay <[email protected]>,'
'Imen Daagi <[email protected]>'),
keywords='robotics numeric vision socket programming',
author_email='[email protected]',
url='https://github.com/AntoineGagne/design-3-glo',
packages=['design'],
data_files=[('config', ['config/camera_optimized_values.json'])],
include_package_data=True,
long_description=get_long_description('README.md'),
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest'],
test_suite='tests',
scripts=['scripts/extract_data_samples.py',
'scripts/download_datasets.py',
'scripts/world_image_items_identifier_ui.py',
'scripts/calibrate.py',
'scripts/vertices_identifier.py']
)