-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (18 loc) · 1.03 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
from setuptools import find_packages
from setuptools import setup
CLASSIFIERS = ['License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8']
URL = 'https://github.com/brandontrabucco/mass'
KEYWORDS = ['Deep Learning', 'Neural Networks',
'Reinforcement Learning', 'Visual Room Rearrangement']
with open('README.md', 'r') as README:
setup(name='mass', version='1.0.0', license='MIT',
packages=find_packages(include=['mass', 'mass.*']),
description='A Simple Approach For Visual Room Rearrangement: 3D Mapping & Semantic Search (ICLR 2023)',
classifiers=CLASSIFIERS, long_description=README.read(),
long_description_content_type='text/markdown',
author='Brandon Trabucco', author_email='[email protected]',
url=URL, download_url=URL + '/archive/v1_0_0.tar.gz',
keywords=KEYWORDS, install_requires=["torch"])