Skip to content

Commit ad8fc1a

Browse files
committed
Add setup.py
1 parent a8bc113 commit ad8fc1a

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

setup.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="keras_crf",
8+
version="0.0.1",
9+
description="A more elegant and convenient CRF built on tensorflow-addons.",
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
url="https://github.com/luozhouyang/keras-crf",
13+
author="ZhouYang Luo",
14+
author_email="[email protected]",
15+
packages=setuptools.find_packages(),
16+
include_package_data=True,
17+
install_requires=[
18+
'tensorflow',
19+
'tensorflow-addons'
20+
],
21+
extras_require={
22+
23+
},
24+
license="Apache Software License",
25+
classifiers=(
26+
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.5",
28+
"Programming Language :: Python :: 3.6",
29+
"Programming Language :: Python :: 3.7",
30+
"License :: OSI Approved :: Apache Software License",
31+
"Operating System :: OS Independent",
32+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
33+
)
34+
)

0 commit comments

Comments
 (0)