No project description provided
Project description
DevPackage
Command line tools to help you develop your package.
Preview
> devp init mypack -license mit --md
> cd mypack
> ls -a
./ ../ .meta_version LICENSE README.md build/ docs/ mypack/ setup.py test/
> cat setup.py
from setuptools import setup, find_packages
...
with Path('README.md').open() as readme:
readme = readme.read()
...
setup(
name='mypack',
...
long_description=readme,
long_description_content_type="text/markdown",
license='mit',
python_requires='>=3.6.0',
url='https://github.com/thautwarm/mypack',
author='thautwarm',
author_email='twshere@outlook.com',
...
entry_points={"console_scripts": []},
# above option specifies commands to be installed,
# e.g: entry_points={"console_scripts": ["devp=devpackage.cli:run"]}
install_requires=["devpackage"],
platforms="any",
...
)
if isinstance(version, Version):
meta_version = Path(".meta_version").open("w")
version.increment(2, 1)
for i in range(2, 0, -1): version.carry_over(i, 42)
meta_version.write("method: autoinc\n")
meta_version.write(f"current: {version}")
> python setup.py install && python -c "import mypack"
hello community, I'm thautwarm
> cat .meta_version
method: autoinc
current: 0.0.2
Install & Requirements
Type pip install -U devpackage
to install.
Requires:
- wisepy
- lice
Usage
devp init
, Create a python package template and render some arguments using your git information.
devp init <package name>
[-license <license name>]
[-pyversion <describe python version requires>]
[--md: use markdown as README instead of restructuredtext]
[--generation: make a <package name>/generation directory, for codegen]
[--timeversion: use timestamp to version your package when building]
[--autoversion: use auto counting to version your package when building]
devp clean
, Removebuild/
,*.egg-info/
,dist
after building your package.
Here are the descriptions of devp
command:
shell> devp --help
Available commands:
clean
clean some build caches
init
initialize developing python package.
optional:
--generation
this project contains generated files.
--autoversion
default version decider, even if you don't specify this option.
automatically increment package's version.
if `--timeversion` is set, this option will be ignored.
--timeversion
automatically generate package's unique version through timestamp.
--md
use markdown as README.
- package_name(positional or keyword arg) : <class 'str'>
- license(positional or keyword arg) = 'MIT'
- pyversion(positional or keyword arg) = '>=3.6.0'
- kwargs(**kwargs)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
devpackage-0.3-py3-none-any.whl
(10.5 kB
view details)
File details
Details for the file devpackage-0.3-py3-none-any.whl
.
File metadata
- Download URL: devpackage-0.3-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20e6f64d7e6d89b480c9e01d9b2df7b386426d9483f7e30b433f1e7bbdaf417f |
|
MD5 | 480b4643197fa2895e3155fe3cfe7b88 |
|
BLAKE2b-256 | e901e2d4dbe5ffb018006d3a27f7e44dd8a15cb02557bb5e0dae813e8d7ce5e4 |