-
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
1 parent
9ce41d2
commit d955d76
Showing
43 changed files
with
1,060 additions
and
941 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 |
---|---|---|
|
@@ -6,4 +6,3 @@ tags | |
dist/ | ||
*egg-info* | ||
.eggs | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,42 @@ | ||
from __future__ import annotations | ||
|
||
import pathlib | ||
from itertools import chain | ||
from setuptools import setup, find_packages | ||
|
||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
HERE = pathlib.Path(__file__) | ||
README = (HERE.parent / "README.md").read_text() | ||
EXTRAS_REQUIRE = {"asana": ["asana==5.0.0"]} | ||
README = (HERE.parent / 'README.md').read_text() | ||
EXTRAS_REQUIRE = {'asana': ['asana==5.0.0']} | ||
|
||
EXTRAS_REQUIRE['all'] = list(set(chain(*EXTRAS_REQUIRE.values()))) | ||
|
||
setup( | ||
name="terka", | ||
version="2.9.1", | ||
description="CLI utility for creating and managing tasks in a terminal", | ||
name='terka', | ||
version='2.9.1', | ||
description='CLI utility for creating and managing tasks in a terminal', | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
author="Andrei Markin", | ||
author_email="[email protected]", | ||
license="Apache 2.0", | ||
url="https://github.com/AndreyMarkinPPC/terka", | ||
long_description_content_type='text/markdown', | ||
author='Andrei Markin', | ||
author_email='[email protected]', | ||
license='Apache 2.0', | ||
url='https://github.com/AndreyMarkinPPC/terka', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
package_data={"": ["presentations/text_ui/css/*.css"]}, | ||
package_data={'': ['presentations/text_ui/css/*.css']}, | ||
install_requires=[ | ||
"sqlalchemy==1.4.0", | ||
"pyaml", | ||
"rich", | ||
"textual==0.41.0", | ||
"plotext==5.2.8", | ||
"textual-plotext==0.2.1", | ||
"pandas", | ||
"matplotlib", | ||
'sqlalchemy==1.4.0', | ||
'pyaml', | ||
'rich', | ||
'textual==0.41.0', | ||
'plotext==5.2.8', | ||
'textual-plotext==0.2.1', | ||
'pandas', | ||
'matplotlib', | ||
], | ||
setup_requires=["pytest-runner"], | ||
tests_requires=["pytest"], | ||
setup_requires=['pytest-runner'], | ||
tests_requires=['pytest'], | ||
extras_require=EXTRAS_REQUIRE, | ||
entry_points={"console_scripts": ["terka=terka.entrypoints.cli:main"]}, | ||
entry_points={'console_scripts': ['terka=terka.entrypoints.cli: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
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 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 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
Oops, something went wrong.