Skip to content

Commit 0305973

Browse files
committed
version bump to 1.0
1 parent ebb06bf commit 0305973

File tree

6 files changed

+41
-9
lines changed

6 files changed

+41
-9
lines changed

.coveragerc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[run]
2-
source = bsptools/
3-
omit = bsptools/__init__.py
2+
source = valvebsp/
3+
omit = valvebsp/__init__.py

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
[![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/pySourceSDK/ValveBSP/blob/master/LICENSE.txt)
2+
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/valvebsp.svg)](https://pypi.python.org/pypi/valvebsp/)
3+
[![PyPI version fury.io](https://badge.fury.io/py/valvebsp.svg)](https://pypi.python.org/pypi/valvebsp/)
4+
[![alt text](https://github.com/pySourceSDK/ValveBSP/blob/master/docs/source/coverage.svg "coverage")]()
15
# ValveBSP
26

37
ValveBSP is a Python library for parsing .bsp files for the Source Engine. It provides provides access to lump data.
48

9+
Full documentation: https://pysourcesdk.github.io/ValveBSP/
10+
511
### Currently supported lumps
612

713
:heavy_check_mark: (52) Supported :x: (6) Unsupported :white_check_mark: (5) Unused :no_good: (1) will not support
@@ -24,3 +30,29 @@ ValveBSP is a Python library for parsing .bsp files for the Source Engine. It pr
2430
| 13 | :heavy_check_mark: | 29 | :x: | 45 | :heavy_check_mark: | 61 | :x: |
2531
| 14 | :heavy_check_mark: | 30 | :heavy_check_mark: | 46 | :heavy_check_mark: | 62 | :x: |
2632
| 15 | :heavy_check_mark: | 31 | :heavy_check_mark: | 47 | :heavy_check_mark: | 63 | :x: |
33+
34+
## Installation
35+
36+
### PyPI
37+
38+
ValveBSP is available on the Python Package Index. This makes installing it with pip as easy as:
39+
40+
```bash
41+
pip3 install valvebsp
42+
```
43+
44+
### Git
45+
46+
If you want the latest code or even feel like contributing, the code is available on GitHub.
47+
48+
You can easily clone the code with git:
49+
50+
```bash
51+
git clone [email protected]:pySourceSDK/ValveBSP.git
52+
```
53+
54+
and install it with:
55+
56+
```bash
57+
python3 setup.py install
58+
```

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# The short X.Y version
3131
version = u''
3232
# The full version, including alpha/beta/rc tags
33-
release = u'0.0.1'
33+
release = u'1.0.0'
3434

3535

3636
# -- General configuration ---------------------------------------------------

docs/source/coverage.svg

+2-2
Loading

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
setup(
33
name='valvebsp',
44
packages=['valvebsp', 'valvebsp.structs'],
5-
version='0.0.1',
5+
version='1.0.0',
66
license='gpl-3.0',
77
description='A library to parse .bsp files used by the source engine.',
88
author='Maxime Dupuis',
99
author_email='[email protected]',
1010
url='https://github.com/pySourceSDK/ValveBSP',
11-
# download_url='https://github.com/pySourceSDK/ValveBSP/archive/v0.0.1.tar.gz',
11+
download_url='https://github.com/pySourceSDK/ValveBSP/archive/v1.0.0.tar.gz',
1212
keywords=['bsp', 'source', 'sourcesdk', 'hammer', 'valve'],
1313
install_requires=['construct', 'future'],
1414
classifiers=[
15-
'Development Status :: 3 - Alpha',
15+
'Development Status :: 5 - Production/Stable',
1616
'Intended Audience :: Developers',
1717
'Topic :: Software Development :: Build Tools',
1818
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy3,py36,py27,py34,py35,py37
2+
envlist = docs,pypy3,py36,py27,py34,py35,py37
33
requires =
44
tox-pyenv
55
setuptools

0 commit comments

Comments
 (0)