Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ArjunSharda authored Jan 26, 2023
1 parent 1335cfb commit 75ee37c
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
from setuptools import setup, find_packages
import pathlib

project_dir = pathlib.Path(__file__).parent.resolve()
long_description = (project_dir / "README.md").read_text(encoding="utf-8")

setup(
name="passeo",
version="1.0.8",
description="🔓 Generate a Password with multiple options",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ArjunSharda/Passeo",
author="Arjun Sharda",
author_email="[email protected]",
classifiers=[ # Optional
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],


package_dir={"": "src"},
packages=find_packages(where="src"), # Required

python_requires=">=3.7, <4",

install_requires=["click", "requests"],



entry_points={
"console_scripts": [
"passeo=passeo.main:cli",
],
},
project_urls={
"Homepage":"https://github.com/ArjunSharda/Passeo",
"Bug Tracker":"https://github.com/ArjunSharda/Passeo/issues"
},
)
project_dir = pathlib.Path(__file__).parent.resolve()
long_description = (project_dir / "README.md").read_text(encoding="utf-8")

setup(
name="passeo",
version="1.0.8",
description="🔓 Generate a Password with multiple options",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ArjunSharda/Passeo",
author="Arjun Sharda",
author_email="[email protected]",
classifiers=[ # Optional
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],

package_dir={"": "src"},
packages=find_packages(where="src"), # Required

python_requires=">=3.7, <4",

install_requires=["click", "requests"],
entry_points={
"console_scripts": [
"passeo=passeo.main:cli",
],
},
project_urls={
"Homepage":"https://github.com/ArjunSharda/Passeo",
"Bug Tracker":"https://github.com/ArjunSharda/Passeo/issues"
},
)

0 comments on commit 75ee37c

Please sign in to comment.