-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Issue #1] Use setup.py instead of pyproject.toml. Store version in s…
…rc/adbPullAs/VERSION
- Loading branch information
1 parent
aa3a0bd
commit d698b3c
Showing
6 changed files
with
64 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from setuptools import setup, find_packages | ||
import pathlib | ||
|
||
|
||
here = pathlib.Path(__file__).parent.resolve() | ||
version = (here / 'src' / 'adbPullAs' / 'VERSION').read_text(encoding='utf-8') | ||
long_description = (here / 'README.md').read_text(encoding='utf-8') | ||
|
||
setup( | ||
name='adbPullAs', | ||
version=version, | ||
description='adb pull wrapper to pull package private files from Android device', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/ViliusSutkus89/adbPullAs/', | ||
author="Vilius Sutkus '89", | ||
author_email='ViliusSutkus89@gmail.com', | ||
license='GPLv3', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Natural Language :: English', | ||
'Operating System :: Android', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Topic :: Utilities' | ||
], | ||
keywords='adb pull run-as', | ||
project_urls={ | ||
'Tracker': 'https://github.com/ViliusSutkus89/adbPullAs/issues' | ||
}, | ||
package_dir={'': 'src'}, | ||
packages=find_packages(where='src'), | ||
python_requires='>=3.9', | ||
package_data={'adbPullAs': ['VERSION']}, | ||
entry_points={'console_scripts': ['adbPullAs=adbPullAs:main']} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters