Skip to content

Commit

Permalink
more in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
watakandai committed Nov 10, 2023
1 parent eaa1cbf commit e2e1c24
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,21 @@
in pkg_resources.parse_requirements(requirements_txt)
]

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

with open('LICENSE') as f:
license = f.read()

setup(
name='specless',
version='0.1.0',
packages=find_packages(),
author='Kandai Watanabe',
author_email='[email protected]',
long_description=readme,
url='https://github.com/watakandai/specless',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
install_requires=install_requires,
python_requires='>=3.7'
python_requires='>=3.7',
)

0 comments on commit e2e1c24

Please sign in to comment.