Compare commits

...

2 Commits

Author SHA1 Message Date
pictuga ed06ae6398 setup: clean up author string
continuous-integration/drone/push Build is passing Details
2021-12-05 18:48:47 +01:00
pictuga c3318d4af0 setup: auto version based on date (yyyymmdd.hhmm) 2021-12-05 18:48:29 +01:00
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,4 @@
from datetime import datetime
from glob import glob from glob import glob
from setuptools import setup from setuptools import setup
@ -6,8 +7,9 @@ package_name = 'morss'
setup( setup(
name = package_name, name = package_name,
version = datetime.now().strftime('%Y%m%d.%H%M'),
description = 'Get full-text RSS feeds', description = 'Get full-text RSS feeds',
author = 'pictuga, Samuel Marks', author = 'pictuga',
author_email = 'contact@pictuga.com', author_email = 'contact@pictuga.com',
url = 'http://morss.it/', url = 'http://morss.it/',
download_url = 'https://git.pictuga.com/pictuga/morss', download_url = 'https://git.pictuga.com/pictuga/morss',