|
39 | 39 | # For a discussion on single-sourcing the version across setup.py and the
|
40 | 40 | # project code, see
|
41 | 41 | # https://packaging.python.org/en/latest/single_source_version.html
|
42 |
| - version='0.0.1', # Required |
| 42 | + version='0.0.2', # Required |
43 | 43 |
|
44 | 44 | # This is a one-line description or tagline of what your project does. This
|
45 | 45 | # corresponds to the "Summary" metadata field:
|
|
54 | 54 | #
|
55 | 55 | # This field corresponds to the "Description" metadata field:
|
56 | 56 | # 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 |
58 | 60 |
|
59 | 61 | # Denotes that our long_description is in Markdown; valid values are
|
60 | 62 | # text/plain, text/x-rst, and text/markdown
|
|
94 | 96 |
|
95 | 97 | # Indicate who your project is intended for
|
96 | 98 | 'Intended Audience :: Developers',
|
97 |
| - 'Topic :: Software Development :: Build Tools', |
| 99 | + 'Topic :: Software Development :: Compilers', |
98 | 100 |
|
99 | 101 | # Pick your license as you wish
|
100 | 102 | 'License :: OSI Approved :: MIT License',
|
101 | 103 |
|
102 | 104 | # Specify the Python versions you support here. In particular, ensure
|
103 | 105 | # that you indicate whether you support Python 2, Python 3 or both.
|
104 |
| - 'Programming Language :: Python :: 3', |
105 |
| - 'Programming Language :: Python :: 3.4', |
106 | 106 | 'Programming Language :: Python :: 3.5',
|
107 | 107 | 'Programming Language :: Python :: 3.6',
|
108 | 108 | ],
|
|
166 | 166 | #
|
167 | 167 | # For example, the following would provide a command called `sample` which
|
168 | 168 | # executes the function `main` from this package when invoked:
|
169 |
| - entry_points={ # Optional |
170 |
| - 'console_scripts': [ |
171 |
| - 'sample=sample:main', |
172 |
| - ], |
| 169 | + entry_points={ |
173 | 170 | },
|
174 | 171 |
|
175 | 172 | # List additional URLs that are relevant to your project as a dict.
|
|
0 commit comments