Skip to content

Commit 732798c

Browse files
author
thang
committed
add development command
1 parent 68da3b4 commit 732798c

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

README.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,32 @@ https://docs.python.org/3/library/logging.html#logging.Logger.propagate
272272
https://docs.python.org/2/library/logging.html#logging.Logger.propagate
273273

274274
## [3] more on flask use_reloader
275-
http://flask.pocoo.org/docs/0.12/errorhandling/#working-with-debuggers
275+
http://flask.pocoo.org/docs/0.12/errorhandling/#working-with-debuggers
276+
277+
# Development
278+
```
279+
[distutils]
280+
index-servers =
281+
pypi
282+
pypitest
283+
284+
[pypi]
285+
repository: https://upload.pypi.org/legacy/
286+
username:
287+
password:
288+
289+
[pypitest]
290+
repository: https://test.pypi.org/legacy/
291+
username=
292+
password=
293+
```
294+
pypitest
295+
```
296+
python setup.py sdist upload -r pypitest
297+
pip3 install json_logging --index-url https://test.pypi.org/simple/
298+
```
299+
pypi
300+
```
301+
python setup.py sdist upload -r pypi
302+
pip3 install json_logging
303+
```

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="json-logging",
5-
version='1.0.0',
5+
version='0.0.1',
66
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'example', 'dist', 'build']),
77
license='Apache License 2.0',
88
description="JSON Python Logging",
@@ -13,7 +13,6 @@
1313
"elk", "elk-stack", "logstash", "kibana"],
1414
platforms='any',
1515
url="https://github.com/thangbn/json-logging",
16-
python_requires='>=2.6, >=3.2',
1716
classifiers=[
1817
'Development Status :: 5 - Production/Stable',
1918
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)