File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
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
+
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
+ )
You can’t perform that action at this time.
0 commit comments