-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (19 loc) · 720 Bytes
/
setup.py
File metadata and controls
25 lines (19 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import setuptools
from pathlib import Path
CURRENT_FOLDER = Path(__file__).parent
README_PATH = CURRENT_FOLDER / 'README.md'
def main():
setuptools.setup(
name = "buildapp",
version = "1.5.0",
author = "Ariel Tubul",
description = "Apk builder script",
packages = setuptools.find_packages(),
long_description = README_PATH.read_text(),
url = "https://github.com/mon231/buildapp/",
long_description_content_type='text/markdown',
entry_points = {'console_scripts': ['buildapp=buildapp.buildapp:main', 'buildapp_fetch_tools=buildapp.download_tools:main']},
install_requires = ['requests']
)
if __name__ == '__main__':
main()