diff options
author | ubq323 <ubq323> | 2021-06-12 19:52:00 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-06-12 19:52:00 +0000 |
commit | 4e8220bc7fdaae6231b14dab61d861342f0c4c27 (patch) | |
tree | e5e0972261f9b82cb22437fdabee70095bfdc4ce /setup.py | |
parent | 5eaab761b37f6e880ccc6e743675d7e2ad59c1e4 (diff) |
add setup.py
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ae3c5f1 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from setuptools import find_packages, setup +setup( + name = 'apioforum', + version = '0.0.1', + packages = find_packages(), + include_package_data = True, + zip_safe = False, + install_requires = [ + 'flask', + ], +) |