diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a7184ce --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,8 @@ +include nxbt/controller/*.py +include nxbt/controller/sdp/*.xml +include nxbt/web/*.py +include nxbt/web/templates/*.html +include nxbt/web/static/*.js +include nxbt/web/static/*.css +include nxbt/web/static/*.svg +include nxbt/web/static/*.png \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 69cdac3..fba2314 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ license = MIT license-file = LICENSE description = Control your Nintendo Switch through a website, terminal, or macro. long-description = file: README.md -long_description_content_type = 'text/markdown', +long_description_content_type = text/markdown, platform = any url = https://pypi.python.org/pypi/nxbt classifiers = diff --git a/setup.py b/setup.py index 10784e4..c389411 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,8 @@ setup( name="nxbt", + include_package_data=True, + long_description_content_type="text/markdown", install_requires=[ "dbus-python>=1.2.16", "Flask>=1.1.2",