-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Export requirements to files * Fixing setuppy and readme
- Loading branch information
Showing
7 changed files
with
68 additions
and
10 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,4 +1,4 @@ | ||
name: Python application | ||
name: ci | ||
|
||
on: | ||
push: | ||
|
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
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 +1,22 @@ | ||
# plz | ||
# plz | ||
![licesns](https://img.shields.io/github/license/royreznik/plz) | ||
![python](https://img.shields.io/pypi/pyversions/plz) | ||
![code style](https://camo.githubusercontent.com/d91ed7ac7abbd5a6102cbe988dd8e9ac21bde0a73d97be7603b891ad08ce3479/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d626c61636b2d3030303030302e737667) | ||
![lastcommit](https://img.shields.io/github/last-commit/royreznik/plz) | ||
[![Python assspplication](https://github.com/royreznik/plz/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/royreznik/plz/actions/workflows/ci.yml) | ||
![downloads](https://img.shields.io/pypi/dm/plz) | ||
|
||
Lightweight and simple python virtual environment and dependencies manager | ||
|
||
## Install | ||
```bash | ||
pip install plz | ||
``` | ||
|
||
## Developing | ||
```bash | ||
make install | ||
make test | ||
make format | ||
make lint | ||
``` |
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ isort | |
flake8 | ||
flake8-black | ||
flake8-isort | ||
mypy | ||
mypy | ||
wheel |
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
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,6 +1,6 @@ | ||
from .__main__ import cli | ||
|
||
__version__ = "0.0.0" | ||
__version__ = "0.0.1" | ||
|
||
|
||
__all__ = ["cli", "__version__"] |
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,21 +1,47 @@ | ||
from pathlib import Path | ||
|
||
from setuptools import setup | ||
|
||
DEPENDENCIES = Path("requirements.in").read_text().split() | ||
|
||
__version__ = "0.0.1" | ||
|
||
readme = Path("README.md").read_text("UTF-8") | ||
|
||
setup( | ||
name="plz", | ||
version="0.0.0", | ||
version=__version__, | ||
author="Roy Reznik", | ||
author_email="royreznik@gmail.com", | ||
license="MIT License", | ||
keywords="CLI wrapping over virtualenv and pip-tools", | ||
packages=["plz"], | ||
install_requires=DEPENDENCIES, | ||
entry_points={ | ||
"console_scripts": [ | ||
"plz = plz:cli", | ||
], | ||
}, | ||
install_requires=DEPENDENCIES, | ||
python_requires=">=3.8, <4", | ||
url="https://github.com/royreznik/plz", | ||
license="MIT License", | ||
description="plz is lightweight and simple virtual environment and dependencies manager, wrapping virtualenv and piptools together", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: System :: Systems Administration", | ||
"Typing :: Typed", | ||
], | ||
) |