diff options
author | Martin Vilcans <martin@librador.com> | 2019-02-21 22:15:51 +0100 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2019-02-21 22:15:51 +0100 |
commit | dc691b1fcbed50703acc0de03f326eb77ab57138 (patch) | |
tree | 3953a1da3a5a50af3ee2c556b402473b028e4afb | |
parent | edb5a2c11cd3a6058895bc0ebdffda298badaff2 (diff) | |
download | screenplain-dc691b1fcbed50703acc0de03f326eb77ab57138.tar.gz |
Follow package recommendations0.8.0
From
https://github.com/pypa/sampleproject
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rw-r--r-- | setup.cfg | 5 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..61a01e9 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include README.markdown +include LICENSE.txt diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..8462fbd --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[metadata] +license_files = LICENSE.txt + +[bdist_wheel] +universal=1 @@ -1,6 +1,6 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup setup( name='screenplain', |