-
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.
- Loading branch information
Showing
4 changed files
with
62 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Setup | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
setup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- name: Test setup | ||
run: | | ||
python3 setup.py sdist |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -2,41 +2,42 @@ | |
import setuptools | ||
|
||
|
||
with open(f"{os.path.dirname(os.path.abspath(__file__))}/README.md") as readme: | ||
setuptools.setup( | ||
name="3-py", | ||
version="1.1.6", | ||
description="`.gitignore`-aware tree tool written in Python", | ||
long_description=readme.read(), | ||
long_description_content_type="text/markdown", | ||
author="Vladimir Chebotarev", | ||
author_email="[email protected]", | ||
license="MIT", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development", | ||
"Topic :: Terminals", | ||
"Topic :: Utilities", | ||
], | ||
keywords=["git", "gitignore", "tree"], | ||
project_urls={ | ||
"Documentation": "https://github.com/excitoon/3/blob/master/README.md", | ||
"Source": "https://github.com/excitoon/3", | ||
"Tracker": "https://github.com/excitoon/3/issues", | ||
}, | ||
url="https://github.com/excitoon/3", | ||
packages=[], | ||
scripts=["3", "3.cmd"], | ||
install_requires=["gitignorefile"], | ||
) | ||
with open(f"{os.path.dirname(os.path.abspath(__file__))}/requirements.txt") as requirements: | ||
with open(f"{os.path.dirname(os.path.abspath(__file__))}/README.md") as readme: | ||
setuptools.setup( | ||
name="3-py", | ||
version="1.1.6", | ||
description="`.gitignore`-aware tree tool written in Python", | ||
long_description=readme.read(), | ||
long_description_content_type="text/markdown", | ||
author="Vladimir Chebotarev", | ||
author_email="[email protected]", | ||
license="MIT", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development", | ||
"Topic :: Terminals", | ||
"Topic :: Utilities", | ||
], | ||
keywords=["git", "gitignore", "tree"], | ||
project_urls={ | ||
"Documentation": "https://github.com/excitoon/3/blob/master/README.md", | ||
"Source": "https://github.com/excitoon/3", | ||
"Tracker": "https://github.com/excitoon/3/issues", | ||
}, | ||
url="https://github.com/excitoon/3", | ||
packages=[], | ||
scripts=["3", "3.cmd"], | ||
install_requires=requirements.read().splitlines(), | ||
) |
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