-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
35 lines (31 loc) · 1.16 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
# --------------------------------------------------------
# Octree-based Sparse Convolutional Neural Networks
# Copyright (c) 2022 Peng-Shuai Wang <[email protected]>
# Licensed under The MIT License [see LICENSE for details]
# Written by Peng-Shuai Wang
# --------------------------------------------------------
from setuptools import setup, find_packages
__version__ = '2.2.5'
with open("README.md", "r", encoding="utf-8") as fid:
long_description = fid.read()
setup(
name='ocnn',
version=__version__,
author='Peng-Shuai Wang',
author_email='[email protected]',
url='https://github.com/octree-nn/ocnn-pytorch',
description='Octree-based Sparse Convolutional Neural Networks',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=['test']),
include_package_data=True,
zip_safe=False,
install_requires=['torch', 'torchvision', 'numpy', 'packaging'],
python_requires='>=3.6',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)