Metadata-Version: 2.1
Name: xvg
Version: 2020.3.29.0
Summary: A scriptable vector graphics library
Home-page: https://github.com/lrgstu/xvgpy
Author: Hayden McDonald
Author-email: lrgstu@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# xvgpy
A scriptable vector graphics library for Python

**Installing**
(See: https://pypi.org/project/xvg/)
```
python3 -m pip install xvg
```
**Testing** (See: https://docs.python.org/3/library/unittest.html)
```
python3 -m unittest
```
**Publishing** (See: https://packaging.python.org/tutorials/packaging-projects/)
```
python3 -m pip install --user --upgrade setuptools wheel
python3 setup.py sdist bdist_wheel

python3 -m pip install --user --upgrade twine
python3 -m twine upload dist/*
```

