Skip to content

Commit

Permalink
Create initial project structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
adambirds committed Apr 22, 2021
1 parent 9cd91bb commit 954b6d6
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="xkpassgen", # Replace with your own username
version="0.0.1",
author="Adam Birds",
author_email="[email protected]",
description="Generate secure multiword passwords/passphrases, inspired by XKCD",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adambirds/xkcd-password-gen",
project_urls={
"Bug Tracker": "https://github.com/adambirds/xkcd-password-gen/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
)
Empty file added src/.gitignore
Empty file.
Empty file added src/xkpassgen/__init__.py
Empty file.
Empty file added src/xkpassgen/static/.gitignore
Empty file.
Empty file added tests/.gitignore
Empty file.

0 comments on commit 954b6d6

Please sign in to comment.