Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
GreatYYX committed Aug 17, 2018
1 parent 2edd0e4 commit 7228477
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.rst
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
with open('VERSION', 'r') as f:
version = f.readline().strip()

with open('README.rst', 'r') as fh:
long_description = fh.read()

with open('requirements.txt', 'r') as f:
install_requires = list()
for line in f:
Expand All @@ -22,6 +25,13 @@
author='USC/ISI',
author_email='',
description='Record Linkage ToolKit',
long_description=long_description,
long_description_content_type='text/x-rst',
include_package_data=True,
install_requires=install_requires
install_requires=install_requires,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
)
)

0 comments on commit 7228477

Please sign in to comment.