Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
radityaharya committed Oct 8, 2022
1 parent 35ebd1d commit d544fc3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.pyc
build/
jellyfinapi.egg-info/
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

# requirements
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
requirements = [r for r in requirements if not r.startswith("#")]

setup(
name="jellyfinapi",
version="10.8.5",
Expand All @@ -25,7 +20,14 @@
author_email="radityaharya02@gmail.com",
url="https://github.com/radityaharya/jellyfinapi",
packages=find_packages(),
install_requires=requirements,
install_requires=[
'jsonpickle~=1.4, >= 1.4.1',
'requests~=2.25',
'cachecontrol~=0.12.6',
'python-dateutil~=2.8.1',
'enum34~=1.1, >=1.1.10',
'deprecation~=2.1'
],
tests_require=["nose>=1.3.7"],
test_suite="nose.collector",
)

0 comments on commit d544fc3

Please sign in to comment.