Update
This commit is contained in:
14
README.md
Normal file
14
README.md
Normal file
@@ -0,0 +1,14 @@
|
||||
# Валидатор
|
||||
|
||||
## Сборка
|
||||
|
||||
```
|
||||
pip install flit
|
||||
python -m build
|
||||
```
|
||||
|
||||
## Установка
|
||||
|
||||
```
|
||||
pip install dist/validator-2.0-py3-none-any.whl
|
||||
```
|
||||
@@ -1,3 +1,11 @@
|
||||
[build-system]
|
||||
requires = ["flit_core >=3.2,<4"]
|
||||
build-backend = "flit_core.buildapi"
|
||||
|
||||
[tool.flit.sdist]
|
||||
include = []
|
||||
exclude = []
|
||||
|
||||
[project]
|
||||
name = "validator"
|
||||
version = "2.0"
|
||||
|
||||
13
setup.py
13
setup.py
@@ -1,13 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
setup(
|
||||
name='validator',
|
||||
version='0.1.0',
|
||||
author='RemiZOffAlex',
|
||||
author_email='remizoffalex@gmail.com',
|
||||
packages=find_packages(exclude=['prototypes', 'tests']),
|
||||
keywords=['data validation', 'validator', 'validation']
|
||||
)
|
||||
Reference in New Issue
Block a user