Skip to content

Commit

Permalink
update setup adding readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Adi3g committed Sep 14, 2024
1 parent 1e889e7 commit 605d5c2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from __future__ import annotations

import pathlib

from setuptools import find_packages
from setuptools import setup

HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()

setup(
name='nox-cli',
use_scm_version=True,
Expand All @@ -13,6 +18,8 @@
url='https://github.com/Adi3g/nox-cli',
packages=find_packages(),
include_package_data=True,
long_description=README,
long_description_content_type='text/markdown',
install_requires=[
'click',
'PyJWT',
Expand Down

0 comments on commit 605d5c2

Please sign in to comment.