Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zemmyang committed May 12, 2024
1 parent 8ad1e75 commit 984eaf9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
with open('requirements.txt') as f:
required = f.read().splitlines()

with open('README.md') as f:
long_description = f.read()


setup(
name="p2t2",
version="0.1.0",
version="0.1.1",
packages=find_packages(),
install_requires=required,
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'p2t2_train = p2t2_train:main',
Expand Down

0 comments on commit 984eaf9

Please sign in to comment.