|
6 | 6 | here = path.abspath(path.dirname(__file__))
|
7 | 7 |
|
8 | 8 | # 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: |
10 | 10 | long_description = f.read()
|
11 |
| -released_version = os.environ.get('VERSION') |
| 11 | +released_version = "1.9.2timezonesdev" |
12 | 12 |
|
13 | 13 | setup(
|
14 |
| - name='pypodcastparser-ihr', |
15 |
| - |
| 14 | + name="pypodcastparser-ihr", |
16 | 15 | version=released_version,
|
17 |
| - |
18 |
| - description='pypodcastparser is a podcast parser.', |
| 16 | + description="pypodcastparser is a podcast parser.", |
19 | 17 | 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", |
28 | 22 | 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", |
38 | 29 | ],
|
39 |
| - |
40 | 30 | install_requires=[
|
41 | 31 | "beautifulsoup4",
|
42 | 32 | "lxml",
|
43 | 33 | ],
|
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"]), |
50 | 36 | )
|
0 commit comments