-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 777 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 777 Bytes
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
from setuptools import setup, find_packages
setup(
name="m2t2",
version="1.0.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
line for line in open('requirements.txt').readlines()
if "@" not in line
],
description="Multi-Task Masked Transformer",
author="Wentao Yuan",
author_email="wentaoy@nvidia.com",
license="MIT Software License",
url="https://m2-t2.github.io",
keywords="robotics manipulation learning computer-vision",
classifiers=[
"License :: OSI Approved :: MIT Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
],
)