Updated package deployment

This commit is contained in:
Brikwerk 2020-09-15 20:36:06 -07:00
commit 223ed1ae8e
3 changed files with 11 additions and 1 deletions

8
MANIFEST.in Normal file
View file

@ -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

View file

@ -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 =

View file

@ -2,6 +2,8 @@ from setuptools import setup
setup(
name="nxbt",
include_package_data=True,
long_description_content_type="text/markdown",
install_requires=[
"dbus-python>=1.2.16",
"Flask>=1.1.2",