Skip to content

Commit fdc0dc9

Browse files
authored
Merge pull request #1 from xurble/release
First releasable version
2 parents 2536219 + dcd9e2c commit fdc0dc9

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
### 0.1.0 -> 0.1.2 -- 3rd April 2024
3+
- Resolve packaging issues
4+
25
### 0.0.2 -- 30th March 2024
36
- Bug fix
47

dripfeed/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
from .api import DripFeed, DripFeedException
File renamed without changes.

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import setuptools
22

3-
4-
with open('readme.md', encoding='utf-8') as f:
3+
with open('README.md', encoding='utf-8') as f:
54
long_description = f.read()
65

7-
86
setuptools.setup(
97
name='dripfeed-client',
10-
version='0.0.2',
8+
version='0.1.2',
119
description='A client for the dripfeed RSS proxy service.',
1210
long_description=long_description,
1311
long_description_content_type='text/markdown',
@@ -20,9 +18,13 @@
2018
"Programming Language :: Python :: 3",
2119
"License :: OSI Approved :: MIT License",
2220
"Operating System :: OS Independent",
21+
"Intended Audience :: Developers",
22+
"Topic :: Internet :: WWW/HTTP",
23+
"Topic :: Software Development :: Libraries :: Python Modules",
2324
],
2425
install_requires=[
2526
'requests',
27+
# Add more dependencies if required
2628
],
2729
include_package_data=True,
2830
)

0 commit comments

Comments
 (0)