-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
62 lines (54 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import io
import os
from setuptools import setup
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
def get_long_description():
readme_file = os.path.join(os.path.dirname(__file__), "README.md")
with io.open(readme_file, "r", encoding="utf-8") as f:
return f.read()
def get_requirements():
req_file = os.path.join(os.path.dirname(__file__), "requirements.txt")
with io.open(req_file, "r", encoding="utf-8") as f:
return [line.strip() for line in f]
requirements = get_requirements()
long_description = get_long_description()
setup(
name='torch_edit_distance',
version="0.4.0",
description="PyTorch edit-distance functions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/1ytic/pytorch-edit-distance",
author="Ivan Sorokin",
author_email="[email protected]",
license="MIT",
ext_modules=[
CUDAExtension('torch_edit_distance_cuda', [
'binding.cpp',
'edit-distance.cu',
])
],
packages=['torch_edit_distance'],
cmdclass={
'build_ext': BuildExtension
},
setup_requires=requirements,
install_requires=requirements,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
])