lexitheras 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lexitheras-1.0.0/src/lexitheras.egg-info → lexitheras-1.0.1}/PKG-INFO +1 -1
- {lexitheras-1.0.0 → lexitheras-1.0.1}/pyproject.toml +1 -1
- {lexitheras-1.0.0 → lexitheras-1.0.1}/setup.py +1 -5
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/__init__.py +1 -1
- {lexitheras-1.0.0 → lexitheras-1.0.1/src/lexitheras.egg-info}/PKG-INFO +1 -1
- {lexitheras-1.0.0 → lexitheras-1.0.1}/.gitignore +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/LICENSE +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/MANIFEST.in +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/PUBLISHING.md +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/README.md +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/docs/images/orion_poussin.jpg +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/requirements.txt +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/setup.cfg +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/cli.py +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/deck.py +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/scraper.py +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/search.py +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/SOURCES.txt +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/dependency_links.txt +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/entry_points.txt +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/requires.txt +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/top_level.txt +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/tests/__init__.py +0 -0
- {lexitheras-1.0.0 → lexitheras-1.0.1}/tests/test_scraper.py +0 -0
@@ -7,12 +7,9 @@ from setuptools import setup, find_packages
|
|
7
7
|
with open("README.md", "r", encoding="utf-8") as fh:
|
8
8
|
long_description = fh.read()
|
9
9
|
|
10
|
-
with open("requirements.txt", "r", encoding="utf-8") as fh:
|
11
|
-
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
|
12
|
-
|
13
10
|
setup(
|
14
11
|
name="lexitheras",
|
15
|
-
version="1.0.
|
12
|
+
version="1.0.1",
|
16
13
|
author="Conor Reid",
|
17
14
|
author_email="", # Add your email if you want
|
18
15
|
description="Convert Perseus Greek vocabulary lists into Anki flashcard decks",
|
@@ -33,7 +30,6 @@ setup(
|
|
33
30
|
"Programming Language :: Python :: 3.10",
|
34
31
|
],
|
35
32
|
python_requires=">=3.6",
|
36
|
-
install_requires=requirements,
|
37
33
|
entry_points={
|
38
34
|
"console_scripts": [
|
39
35
|
"lexitheras=lexitheras.cli:main",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|