<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/docs/userguide/quickstart.rst, branch v64.0.2</title>
<subtitle>github.com: pypa/setuptools.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/'/>
<entry>
<title>Update docs to reflect the implementation of PEP 660</title>
<updated>2022-08-06T19:55:16+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-08-06T19:55:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=228f3e99d89a4f200e782a71b02ab0425f5e1dc4'/>
<id>228f3e99d89a4f200e782a71b02ab0425f5e1dc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: Update quickstart.rst (#3464)</title>
<updated>2022-08-06T18:04:22+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-08-06T18:04:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=c14fea445bf2ad41ffe2057c7e64192aa30af4df'/>
<id>c14fea445bf2ad41ffe2057c7e64192aa30af4df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>quickstart docs: Add comment about optional `packages.find`</title>
<updated>2022-08-06T17:08:05+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-08-06T17:04:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=661c3b6067ba2cf5407ab3aa06b36f0cbabeaf3e'/>
<id>661c3b6067ba2cf5407ab3aa06b36f0cbabeaf3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>type in quickstart.rst</title>
<updated>2022-07-29T09:41:21+00:00</updated>
<author>
<name>Edgar Riba</name>
<email>edgar.riba@gmail.com</email>
</author>
<published>2022-07-29T09:41:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=60c555112b328b90b59e5f4d8a94a0e2207f9817'/>
<id>60c555112b328b90b59e5f4d8a94a0e2207f9817</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update quickstart.rst</title>
<updated>2022-07-25T06:11:03+00:00</updated>
<author>
<name>Géry Ogam</name>
<email>gery.ogam@gmail.com</email>
</author>
<published>2022-07-25T06:11:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=0d3843dc44cf2ab843bea7d8e813f05effde5b2f'/>
<id>0d3843dc44cf2ab843bea7d8e813f05effde5b2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo `find_namespaces:` to `find_namespace:`</title>
<updated>2022-07-25T06:07:35+00:00</updated>
<author>
<name>Brody Rampono</name>
<email>64628500+brampono@users.noreply.github.com</email>
</author>
<published>2022-07-25T06:07:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=ba7db83ae7080979cbb650f3efb74373544589a5'/>
<id>ba7db83ae7080979cbb650f3efb74373544589a5</id>
<content type='text'>
I believe the correct `setup.cfg` packaging option is `find_namespace:`, not `find_namespaces:`
I can't find any other references to `find_namespaces` in the docs or repository.

Using `find_namespaces:` causes packaging to fail. Example to reproduce:
```
.
├── pyproject.toml
├── setup.cfg
└── src
    ├── pkg1
    │   └── namespace
    │       └── __init__.py
    └── pkg2
        └── __init__.py
```

Contents of `pyproject.toml`:
```
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
```

Contents of `setup.cfg`:
```
[metadata]
name = pkg_test

[options]
packages = find_namespaces:
package_dir =
    =src

[options.packages.find]
where = src
```

```
$ pip install .
&gt; ...
&gt; error: package directory 'src/find_namespaces:' does not exist
&gt; ...
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I believe the correct `setup.cfg` packaging option is `find_namespace:`, not `find_namespaces:`
I can't find any other references to `find_namespaces` in the docs or repository.

Using `find_namespaces:` causes packaging to fail. Example to reproduce:
```
.
├── pyproject.toml
├── setup.cfg
└── src
    ├── pkg1
    │   └── namespace
    │       └── __init__.py
    └── pkg2
        └── __init__.py
```

Contents of `pyproject.toml`:
```
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
```

Contents of `setup.cfg`:
```
[metadata]
name = pkg_test

[options]
packages = find_namespaces:
package_dir =
    =src

[options.packages.find]
where = src
```

```
$ pip install .
&gt; ...
&gt; error: package directory 'src/find_namespaces:' does not exist
&gt; ...
```</pre>
</div>
</content>
</entry>
<entry>
<title>Reorder words in footnote to improve the meaning</title>
<updated>2022-06-17T08:38:05+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri+github@gmail.com</email>
</author>
<published>2022-06-17T08:38:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=e85063a9cfcb3de9322fe601f418768f927b73e8'/>
<id>e85063a9cfcb3de9322fe601f418768f927b73e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: Reorder example tabs</title>
<updated>2022-06-16T20:59:01+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-16T20:59:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=9d487039eaab63eda2283c69653ef1b09ccf702d'/>
<id>9d487039eaab63eda2283c69653ef1b09ccf702d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change wording from *experimental* to *beta*</title>
<updated>2022-06-16T20:50:25+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-16T20:50:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=9c7163bc6030e546ba1133de823d0b4ac06a02d9'/>
<id>9c7163bc6030e546ba1133de823d0b4ac06a02d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clarify warnings and notes in documentation about experimental pyproject.toml</title>
<updated>2022-06-16T20:37:17+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-07T21:16:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=2734a357dad91dcddf3a8e4e5779c5e68da621eb'/>
<id>2734a357dad91dcddf3a8e4e5779c5e68da621eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
