Skip to content

Commit 3ad5609

Browse files
committed
minor update
1 parent 4ed9437 commit 3ad5609

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

setup.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# For a discussion on single-sourcing the version across setup.py and the
4040
# project code, see
4141
# https://packaging.python.org/en/latest/single_source_version.html
42-
version='0.0.1', # Required
42+
version='0.0.2', # Required
4343

4444
# This is a one-line description or tagline of what your project does. This
4545
# corresponds to the "Summary" metadata field:
@@ -54,7 +54,9 @@
5454
#
5555
# This field corresponds to the "Description" metadata field:
5656
# https://packaging.python.org/specifications/core-metadata/#description-optional
57-
long_description=long_description, # Optional
57+
long_description='This library has the ability to reload python modules during execution and update existing '
58+
'objects. This way you edit code, reload it and see the results immediately with no need to '
59+
'restart your code. More info and documentation can be found at the home page', # Optional
5860

5961
# Denotes that our long_description is in Markdown; valid values are
6062
# text/plain, text/x-rst, and text/markdown
@@ -94,15 +96,13 @@
9496

9597
# Indicate who your project is intended for
9698
'Intended Audience :: Developers',
97-
'Topic :: Software Development :: Build Tools',
99+
'Topic :: Software Development :: Compilers',
98100

99101
# Pick your license as you wish
100102
'License :: OSI Approved :: MIT License',
101103

102104
# Specify the Python versions you support here. In particular, ensure
103105
# that you indicate whether you support Python 2, Python 3 or both.
104-
'Programming Language :: Python :: 3',
105-
'Programming Language :: Python :: 3.4',
106106
'Programming Language :: Python :: 3.5',
107107
'Programming Language :: Python :: 3.6',
108108
],
@@ -166,10 +166,7 @@
166166
#
167167
# For example, the following would provide a command called `sample` which
168168
# executes the function `main` from this package when invoked:
169-
entry_points={ # Optional
170-
'console_scripts': [
171-
'sample=sample:main',
172-
],
169+
entry_points={
173170
},
174171

175172
# List additional URLs that are relevant to your project as a dict.

0 commit comments

Comments
 (0)