Skip to content

Commit e938cc2

Browse files
author
Tianyu Gao
committed
add setup.py
1 parent 1341bc4 commit e938cc2

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,6 @@ benchmark
124124

125125
# test env
126126
.test
127+
128+
# package
129+
opennre-egg.info

setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)