aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2019-09-22 13:07:22 +0200
committerJan200101 <sentrycraft123@gmail.com>2019-09-22 13:07:22 +0200
commit1a65827d032c0e2797d990cd40ecc71038e1947b (patch)
treee5dac462494b9d9c956b4f554a10ac7deeaba2c8
parenta6b6cf1717e68034a358e8db63bbad8f6dc3a710 (diff)
downloadShellyPy-1a65827d032c0e2797d990cd40ecc71038e1947b.tar.gz
ShellyPy-1a65827d032c0e2797d990cd40ecc71038e1947b.zip
push MANIFEST.in
-rw-r--r--MANIFEST.in2
-rwxr-xr-xsetup.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..096dd50
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,2 @@
+include LICENSE
+include requirements.txt
diff --git a/setup.py b/setup.py
index f62ed46..1d60440 100755
--- a/setup.py
+++ b/setup.py
@@ -28,10 +28,11 @@ setuptools.setup(
packages=["ShellyPy"],
license="MIT",
install_requires=requirements,
+ include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
-) \ No newline at end of file
+)