We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1341bc4 commit e938cc2Copy full SHA for e938cc2
.gitignore
@@ -124,3 +124,6 @@ benchmark
124
125
# test env
126
.test
127
+
128
+# package
129
+opennre-egg.info
setup.py
@@ -0,0 +1,18 @@
1
+import setuptools
2
+with open("README.md", "r") as fh:
3
+ long_description = fh.read()
4
+ setuptools.setup(
5
+ name='opennre',
6
+ version='0.1',
7
+ author="Tianyu Gao",
8
+ author_email="[email protected]",
9
+ description="An open source toolkit for relation extraction",
10
+ long_description=long_description,
11
+ url="https://github.com/thunlp/opennre",
12
+ packages=setuptools.find_packages(),
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ )
0 commit comments