-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
34 lines (28 loc) · 1004 Bytes
/
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
import os
from distutils.core import setup
from subprocess import getoutput
import setuptools
def get_version_tag() -> str:
try:
version = os.environ["FFT_CONV_PYTORCH_VERSION"]
except KeyError:
version = getoutput("git describe --tags --abbrev=0")
return version
setup(
name="fft-conv-pytorch",
version=get_version_tag(),
author="Frank Odom",
author_email="[email protected]",
url="https://github.com/fkodom/fft-conv-pytorch",
packages=setuptools.find_packages(exclude=["tests"]),
description="Implementation of 1D, 2D, and 3D FFT convolutions in PyTorch.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=["numpy", "torch>=1.8"],
extras_require={"test": ["black", "flake8", "isort", "pytest", "pytest-cov"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)