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.
Files changed (24) hide show
  1. {lexitheras-1.0.0/src/lexitheras.egg-info → lexitheras-1.0.1}/PKG-INFO +1 -1
  2. {lexitheras-1.0.0 → lexitheras-1.0.1}/pyproject.toml +1 -1
  3. {lexitheras-1.0.0 → lexitheras-1.0.1}/setup.py +1 -5
  4. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/__init__.py +1 -1
  5. {lexitheras-1.0.0 → lexitheras-1.0.1/src/lexitheras.egg-info}/PKG-INFO +1 -1
  6. {lexitheras-1.0.0 → lexitheras-1.0.1}/.gitignore +0 -0
  7. {lexitheras-1.0.0 → lexitheras-1.0.1}/LICENSE +0 -0
  8. {lexitheras-1.0.0 → lexitheras-1.0.1}/MANIFEST.in +0 -0
  9. {lexitheras-1.0.0 → lexitheras-1.0.1}/PUBLISHING.md +0 -0
  10. {lexitheras-1.0.0 → lexitheras-1.0.1}/README.md +0 -0
  11. {lexitheras-1.0.0 → lexitheras-1.0.1}/docs/images/orion_poussin.jpg +0 -0
  12. {lexitheras-1.0.0 → lexitheras-1.0.1}/requirements.txt +0 -0
  13. {lexitheras-1.0.0 → lexitheras-1.0.1}/setup.cfg +0 -0
  14. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/cli.py +0 -0
  15. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/deck.py +0 -0
  16. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/scraper.py +0 -0
  17. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras/search.py +0 -0
  18. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/SOURCES.txt +0 -0
  19. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/dependency_links.txt +0 -0
  20. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/entry_points.txt +0 -0
  21. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/requires.txt +0 -0
  22. {lexitheras-1.0.0 → lexitheras-1.0.1}/src/lexitheras.egg-info/top_level.txt +0 -0
  23. {lexitheras-1.0.0 → lexitheras-1.0.1}/tests/__init__.py +0 -0
  24. {lexitheras-1.0.0 → lexitheras-1.0.1}/tests/test_scraper.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lexitheras
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Convert Perseus Greek vocabulary lists into Anki flashcard decks
5
5
  Home-page: https://github.com/conorreid/lexitheras
6
6
  Author: Conor Reid
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "lexitheras"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "Convert Perseus Greek vocabulary lists into Anki flashcard decks"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.6"
@@ -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.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",
@@ -2,7 +2,7 @@
2
2
  Lexitheras - Perseus Greek vocabulary to Anki deck converter
3
3
  """
4
4
 
5
- __version__ = "1.0.0"
5
+ __version__ = "1.0.1"
6
6
  __author__ = "Conor Reid"
7
7
 
8
8
  from .scraper import PerseusVocabScraper
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lexitheras
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Convert Perseus Greek vocabulary lists into Anki flashcard decks
5
5
  Home-page: https://github.com/conorreid/lexitheras
6
6
  Author: Conor Reid
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes