-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·62 lines (59 loc) · 1.97 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
import pathlib
from distutils.core import setup
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="coperception",
version="0.0.10",
package_data={
"": ["*.so"],
},
packages=setuptools.find_packages(),
license="apache-2.0", # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description="A library for collaborative perception.",
author="AI4CE Lab @NYU",
author_email="[email protected]",
url="https://ai4ce.github.io/",
download_url="https://github.com/coperception/coperception/archive/refs/tags/v0.0.1-alpha.tar.gz",
keywords=[
"computer-vision",
"deep-learning",
"autonomous-driving",
"collaborative-learning",
"knowledge-distillation",
"communication-networks",
"multi-agent-learning",
"multi-agent-system",
"3d-object-detection",
"graph-learning",
"point-cloud-processing",
"v2x-communication",
"multi-agent-perception",
"3d-scene-understanding",
], # Keywords that define your package best
install_requires=[
"numpy",
"torch",
"opencv-python",
"torchvision",
"typing",
"nuscenes-devkit",
"pyquaternion",
"numba",
"matplotlib",
"mmcv",
"terminaltables",
"shapely",
"seaborn",
],
classifiers=[
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7", # Specify which pyhton versions that you want to support
],
)