-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1335cfb
commit 75ee37c
Showing
1 changed file
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
}, | ||
) |