Skip to content

Commit 4032b96

Browse files
Drew JoseyDrew Josey
authored andcommitted
renaming
1 parent b60c0cd commit 4032b96

File tree

1 file changed

+16
-30
lines changed

1 file changed

+16
-30
lines changed

setup.py

Lines changed: 16 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,45 +6,31 @@
66
here = path.abspath(path.dirname(__file__))
77

88
# Get the long description from the README file
9-
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
9+
with open(path.join(here, "README.md"), encoding="utf-8") as f:
1010
long_description = f.read()
11-
released_version = os.environ.get('VERSION')
11+
released_version = "1.9.2timezonesdev"
1212

1313
setup(
14-
name='pypodcastparser-ihr',
15-
14+
name="pypodcastparser-ihr",
1615
version=released_version,
17-
18-
description='pypodcastparser is a podcast parser.',
16+
description="pypodcastparser is a podcast parser.",
1917
long_description=long_description,
20-
21-
url='https://github.com/iheartradio/pypodcastparser',
22-
23-
author='Christian Paul, Jason Rigden',
24-
author_email='christianpaul@iheartmedia.com, jasonrigden@gmail.com',
25-
26-
license='MIT',
27-
18+
url="https://github.com/iheartradio/pypodcastparser",
19+
author="Christian Paul, Jason Rigden",
20+
author_email="christianpaul@iheartmedia.com, jasonrigden@gmail.com",
21+
license="MIT",
2822
classifiers=[
29-
'Development Status :: 5 - Production/Stable',
30-
31-
'Intended Audience :: Developers',
32-
'Topic :: Software Development :: Libraries :: Python Modules',
33-
'Topic :: Text Processing :: Markup :: XML',
34-
35-
'License :: OSI Approved :: MIT License',
36-
37-
'Programming Language :: Python :: 3.7',
23+
"Development Status :: 5 - Production/Stable",
24+
"Intended Audience :: Developers",
25+
"Topic :: Software Development :: Libraries :: Python Modules",
26+
"Topic :: Text Processing :: Markup :: XML",
27+
"License :: OSI Approved :: MIT License",
28+
"Programming Language :: Python :: 3.7",
3829
],
39-
4030
install_requires=[
4131
"beautifulsoup4",
4232
"lxml",
4333
],
44-
45-
keywords=['podcast', 'parser', 'rss', 'feed'],
46-
47-
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
48-
49-
34+
keywords=["podcast", "parser", "rss", "feed"],
35+
packages=find_packages(exclude=["contrib", "docs", "tests"]),
5036
)

0 commit comments

Comments
 (0)