-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
64 lines (52 loc) · 2.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# License. (https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
from sys import platform
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding='utf-8') as f:
long_description = f.read()
setup(
name="Data_Annotation_Tool",
version="1.0.0",
description = "Tools for Annotating data for Object Detection, Lane Detection and Semantic Segmentation.",
long_description = long_description,
url = "https://github.com/Autonomous-Car-Project/Data-Annotation-Tool",
author="TiVRA AI",
author_email="[email protected]",
license="Creative Commons Attribution-NonCommercial-ShareAlike 4.0. https://creativecommons.org/licenses/by-nc-sa/4.0/",
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
platform = ['any'],
keywords='tivra ai data annotation cc india tivraai data-annotation-tool self-driving autonomous',
packages=find_packages(exclude=["docs"]),
install_requires=[
'PyQt5',
],
entry_points={
'console_scripts' : [
'data_ann=anntools.main:main'
]
}
)
print("""
@@@ @ @@@
@@@ @@@ @@@
(@@ @@@@@@@
@@ @@@ @@@
@@@@@ @@@@@
@@@ @@@ @@@
@@@@@@@ @@@
@@@ @@% *@@
@@@ @ @ @ @ @@@ @ %@ @
@ & @ @ @ @ @ @ @ @& @ @
@ & @ @ @ @ @ @, @ @
TiVRA AI
""")