-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.02 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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name="PyInterpX",
version="0.2.3",
description="A highly performant, GPU compatible package for higher order interpolation in PyTorch",
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
keywords="Machine learning, Pytorch, Interpolation, Higher order interpolation, 3D interpolation, GPU compatible",
author="ThomasHelfer",
author_email="[email protected]",
license="MIT", # Updated to MIT License
packages=find_packages(exclude=["tests"]),
install_requires=[
"torch",
"black",
"pre-commit",
"pytest",
"numpy",
"tqdm",
"matplotlib",
],
python_requires=">=3.8",
include_package_data=True,
zip_safe=False,
)