Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Oct 11, 2018
1 parent ae5106b commit 424c353
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
What's New
==========

.. _whats-new.0.1.0:
.. _whats-new.1.0.0:

v0.1.0 (YYYY-MM-DD)
v1.0.0 (2018-10-11)
-------------------

Fork from Legal & General's landg.bash.
Expand Down
17 changes: 8 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,30 @@
from setuptools import find_packages, setup


MAJOR = 0
MINOR = 1
MAJOR = 1
MINOR = 0
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''


DISTNAME = 'pshell'
LICENSE = 'LGPL'
LICENSE = 'Apache'
AUTHOR = 'Guido Imperiale'
AUTHOR_EMAIL = 'crusaderky@gmail.com'
URL = 'https://github.com/crusaderky/pshell'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later '
'(LGPLv3+)',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: System :: System Shells',
]

INSTALL_REQUIRES = ['psutil >= 3.2']
Expand Down

0 comments on commit 424c353

Please sign in to comment.