mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-07-21 22:38:53 -04:00
Create examples directory on init
This commit is contained in:
parent
a4f5b28707
commit
681295a818
3 changed files with 12 additions and 0 deletions
7
setup.py
7
setup.py
|
@ -5,6 +5,12 @@ exec(open("nomadnet/_version.py", "r").read())
|
|||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
package_data = {
|
||||
"": [
|
||||
"examples/messageboard/*",
|
||||
]
|
||||
}
|
||||
|
||||
setuptools.setup(
|
||||
name="nomadnet",
|
||||
version=__version__,
|
||||
|
@ -15,6 +21,7 @@ setuptools.setup(
|
|||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/markqvist/nomadnet",
|
||||
packages=setuptools.find_packages(),
|
||||
package_data=package_data,
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue