-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 695 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 695 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
26
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="aptbps",
version=1.0,
description="Density-adaptive distance encoding for machine learning on point clouds",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rdimaio/aptbps",
setup_requires=["numpy", "sklearn", "tqdm", "scipy", "KDEpy"],
install_requires=[
"sklearn",
"tqdm",
"numpy",
"scipy",
"KDEpy"
],
author="Riccardo Di Maio",
license="MIT",
keywords="aptbps",
author_email="riccardodimaio11@gmail.com",
packages=["aptbps"]
)