@@ -131,7 +131,7 @@ from `sampleproject/setup.py
131
131
132
132
::
133
133
134
- packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
134
+ packages=find_packages(exclude=['contrib', 'docs', 'tests*'])
135
135
136
136
It's required to list the :term: `packages <Import Package> ` to be included
137
137
in your project. Although they can be listed manually,
@@ -191,7 +191,7 @@ from `sampleproject/setup.py
191
191
],
192
192
193
193
# What does your project relate to?
194
- keywords='sample setuptools development',
194
+ keywords='sample setuptools development'
195
195
196
196
197
197
@@ -255,7 +255,7 @@ from `sampleproject/setup.py
255
255
256
256
::
257
257
258
- data_files=[('my_data', ['data/data_file'])],
258
+ data_files=[('my_data', ['data/data_file'])]
259
259
260
260
Each (directory, files) pair in the sequence specifies the installation
261
261
directory and the files to install there. If directory is a relative path, it is
@@ -290,7 +290,7 @@ from `sampleproject/setup.py
290
290
'console_scripts': [
291
291
'sample=sample:main',
292
292
],
293
- },
293
+ }
294
294
295
295
Although ``setup.py `` supports a `scripts
296
296
<http://docs.python.org/3.4/distutils/setupscript.html#installing-scripts> `_
@@ -436,10 +436,10 @@ Uploading your Project to PyPI
436
436
437
437
.. note ::
438
438
439
- Before releasing on main PyPI repo, you might prefer training with
439
+ Before releasing on main PyPI repo, you might prefer training with
440
440
`PyPI test site <https://testpypi.python.org/pypi >`_
441
- which is cleaned on a semi regular basis. See
442
- `these instructions <https://wiki.python.org/moin/TestPyPI >`_ on how
441
+ which is cleaned on a semi regular basis. See
442
+ `these instructions <https://wiki.python.org/moin/TestPyPI >`_ on how
443
443
to setup your configuration in order to use it.
444
444
445
445
First, you need a :term: `PyPI <Python Package Index (PyPI)> ` user
0 commit comments