Skip to content

Commit

Permalink
Improved installation script.
Browse files Browse the repository at this point in the history
  • Loading branch information
eterey committed Sep 18, 2014
1 parent f8207f8 commit 05c77b6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 15 deletions.
4 changes: 0 additions & 4 deletions MANIFEST.in

This file was deleted.

5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Run as root user:

.. code-block:: bash
pip install pyspectator_tornado
pip install -U pyspectator_tornado
==================
Expand All @@ -60,8 +60,7 @@ Most simple method, where pyspectator_tornado will be binded on port "8888" and
python start.py
If you want use simple address "localhost" or
port "8888" is busy by another application, you specify custom port, for example:
If you want use simple address "localhost" or port "8888" is busy by another application, you specify custom port, for example:

.. code-block:: bash
Expand Down
2 changes: 2 additions & 0 deletions pyspectator_tornado/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version = (1, 1, 0)
version_str = '.'.join([str(n) for n in version])
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import sys
import os
from pyspectator_tornado import version_str

try:
from setuptools import setup
Expand All @@ -17,15 +18,18 @@ def main():
# Describe installer
setup(
name='pyspectator_tornado',
version='1.0.4',
license='BSD',
version=version_str,
author='Maxim Grischuk',
author_email='[email protected]',
maintainer='Maxim Grischuk',
maintainer_email='[email protected]',
packages=['pyspectator_tornado'],
url='https://github.com/uzumaxy/pyspectator_tornado',
download_url='https://github.com/uzumaxy/pyspectator_tornado/releases',
license='BSD',
packages=['pyspectator_tornado'],
package_data={
'pyspectator_tornado': ['LICENSE', 'README.rst']
},
description='pyspectator_tornado is a web-monitoring tool ported on'
'Tornado with pyspectator as a main monitoring module.',
long_description=open('README.rst').read(),
Expand All @@ -43,9 +47,6 @@ def main():
'web', 'tornado', 'www'
],
platforms='Platform Independent',
package_data={
'pyspectator': ['LICENSE', 'README.rst']
},
scripts=['start.py'],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 05c77b6

Please sign in to comment.