Skip to content

Commit 4836e41

Browse files
committed
Merge pull request #4 from mriehl/master
Now on PyPI
2 parents 5fb93ce + 4856325 commit 4836e41

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ venv
22
dist
33
build
44
*.py[co]
5+
*.egg-info

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,8 @@ PythonVerbalExpressions
33

44
## Installation
55
```bash
6-
python setup.py install
6+
pip install VerbalExpressions
77
```
8-
9-
Hopefully you will also be able to use
10-
```bash
11-
pip install verbalexpressions
12-
```
13-
in the near future.
14-
158
## Usage
169
```python
1710
from verbalexpressions import VerEx
@@ -20,5 +13,6 @@ verbal_expression = VerEx()
2013

2114
## Developer setup : running the tests
2215
```bash
16+
python setup.py develop
2317
python setup.py test
2418
```

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,19 @@
88
version = '0.0.1',
99
description = 'Make difficult regular expressions easy! Python port of the awesome VerbalExpressions repo - https://github.com/jehna/VerbalExpressions',
1010
long_description = '''Please see https://github.com/VerbalExpressions/PythonVerbalExpressions/blob/master/README.md for more information!''',
11-
author = "Mihai Ionut Vilcu, Peder Soholt",
11+
author = "Yan Wenjun, diogobeda, Mihai Ionut Vilcu, Peder Soholt",
1212
author_email = "",
1313
license = 'MIT',
1414
url = 'https://github.com/VerbalExpressions/PythonVerbalExpressions',
1515
test_suite='tests',
1616
scripts = [],
1717
packages = ['verbalexpressions'],
18-
classifiers = [],
18+
classifiers = [
19+
'License :: OSI Approved :: MIT License',
20+
'Programming Language :: Python',
21+
'Topic :: Software Development :: Libraries',
22+
'Topic :: Text Processing'
23+
],
1924
zip_safe=True
2025
)
2126

0 commit comments

Comments
 (0)