Skip to content

Commit

Permalink
update setup.py, delete unnecessary plot function and import
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluytergaethje committed Feb 23, 2023
1 parent 3ff483b commit 799447d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 0 additions & 5 deletions pydracor/dracor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from collections import defaultdict
from functools import lru_cache

import matplotlib.pyplot as plt
import requests


Expand Down Expand Up @@ -1275,10 +1274,6 @@ def stage_directions_with_speakers(self):
f"{self._base_url}/corpora/{self.corpus_name}/play/{self.name}/stage-directions-with-speakers"
)

def plot(self):
plt.plot([1, 2, 3, 1.5])
plt.show()

def summary(self):
"""Play summary
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@
long_description=long_description,
long_description_content_type='text/markdown',
author='Eduard Grigoriev, Henny Sluyter-Gäthje',
author_email='[email protected], [email protected]',
author_email='[email protected], [email protected]',
url='https://github.com/dracor-org/pydracor',
download_url='https://github.com/dracor-org/pydracor/archive/pydracor-v0.0.1.tar.gz',
keywords=['drama corpus', 'drama', 'corpus', 'pydracor', 'dracor', 'api', 'wrapper'],
install_requires=[
'matplotlib',
'requests',
'requests>=2.28.2',
],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 799447d

Please sign in to comment.