forked from Pointcept/Pointcept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.29 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
from setuptools import setup, find_packages
# Package metadata
NAME = 'pointcept'
VERSION = '1.0.0'
DESCRIPTION = 'Enfuse implementation of PointTransformerV3 model'
AUTHOR = 'zdata-inc.com'
EMAIL = '[email protected]'
URL = 'https://github.com/zdata-inc/Pointcept.git'
LICENSE = 'MIT'
PYTHON_VERSION = '>=3.11.0'
# Long description from README.md
with open('README.md', 'r', encoding = 'utf-8') as f:
long_description = 'you do not need the whole README here'
# Required packages
with open('requirements.txt', 'r') as f:
required_packages = f.read().splitlines()
# Specify the directory to include
package_data = {'pointcept': ['datasets/preprocessing/**/*']}
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = long_description,
long_description_content_type = 'text/markdown',
author = AUTHOR,
author_email = EMAIL,
url = URL,
license = LICENSE,
python_requires = PYTHON_VERSION,
packages=find_packages(),
package_data=package_data,
include_package_data=True,
install_requires = required_packages,
classifiers = [
'Development Status :: 4 - Production/Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent'
],
)