-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 999 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
from setuptools import setup, find_packages
setup(
name="PyTorchCRF",
version="0.1",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['torch>=1.0.0'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
'hello': ['*.msg'],
},
author="WING NUS",
author_email="[email protected]",
description="A stand-alone lightweight CRF layer based on PyTorch.",
license="Apache",
keywords="pytorch, crf, probabilistic modelling",
url="https://github.com/WING-NUS/PyTorchCRF",
project_urls={
"Bug Tracker": "https://github.com/WING-NUS/PyTorchCRF",
"Documentation": "https://github.com/WING-NUS/PyTorchCRF",
"Source Code": "https://github.com/WING-NUS/PyTorchCRF",
}
)