diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-02-14 01:38:17 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-02-14 01:38:17 -0600 |
commit | 0e46f2cd0a2f6a972da76ec92d10bb77cd3c7f37 (patch) | |
tree | 941ae7aecf3221865de7a0c5823fae48bee20592 /setup.py | |
parent | a7f3be739f23cb2a8fbadd61785855e0dfa5b06a (diff) |
add boilerplate code, rename repo
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8770a01 --- /dev/null +++ b/setup.py @@ -0,0 +1,7 @@ +from setuptools import setup + +setup( + setup_requires=['pbr'], + pbr=True, + long_description_content_type="text/markdown" +) |