Skip to content

Commit

Permalink
Added packaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
KOLANICH committed Apr 15, 2021
1 parent f8a04a3 commit dc0060f
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
*.pyc
__pycache__
*.py[co]
/*.egg-info
build
dist
.eggs
monkeytype.sqlite3
/.ipynb_checkpoints
*.srctrlbm
*.srctrldb
*.sublime*

4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE
include *.md
include tests
include .editorconfig
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build-system]
requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
26 changes: 26 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[metadata]
name = picklemagic
version = 0.1
author = CensoredUsername
url = https://github.com/CensoredUsername/picklemagic
description = A library for analysing python pickles safely
long_description = file: README.md
long_description_content_type = text/markdown
keywords = pickle, security
license = WTFPL
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Development Status :: 4 - Beta
Environment :: Other Environment
Intended Audience :: Developers
License :: Public Domain
License :: Public Domain :: WTFPL
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules

[options]
python_requires = >=3.4
zip_safe = True
py_modules = picklemagic, pickleast
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3

0 comments on commit dc0060f

Please sign in to comment.