File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+
2+ from .api import DripFeed , DripFeedException
File renamed without changes.
Original file line number Diff line number Diff line change 11import 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-
86setuptools .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' ,
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)
You can’t perform that action at this time.
0 commit comments