-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 863 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
from setuptools import setup, find_packages
setup(
name="feiertag",
version="0.1.0rc1",
author="Elijah Rippeth",
author_email="elijah.rippeth@gmail.com",
url="https://github.com/erip/feiertag",
description="An open-source neural sequence tagging toolkit.",
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
license="MIT",
packages=find_packages(exclude=("tests", "tests.*",)),
zip_safe=True,
python_requires='>=3.6,<4',
install_requires=[
"dataclasses",
"hydra-core",
"torch",
"pytorch_lightning",
"pytorch-crf",
],
test_requires=[
"pytest",
"pytest-cov",
"hypothesis"
],
entry_points={
'console_scripts': [
'feiertag-train=feiertag.cli.train:main'
],
}
)