Skip to content

Commit

Permalink
updated setup for 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Voyz committed Dec 17, 2020
1 parent bd6cb06 commit 415f13d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@

from setuptools import find_packages

with open("README.md", "r") as fh:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='databay',
packages=find_packages(exclude=[
"*.tests", "*.tests.*", "tests.*", "tests", "examples", "docs", "out", "dist"]),
version='0.1.6',
"*.tests", "*.tests.*", "tests.*", "tests", "examples", "docs", "out", "dist"]),
version='0.2.0',
license='Apache-2.0',
description='Databay is a Python interface for scheduled data transfer. It facilitates transfer of (any) data from A to B, on a scheduled interval.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Voy Zan',
author='Voy Zan, Charles Pierse',
author_email='voy1982@yahoo.co.uk',
url='https://github.com/Voyz/databay',
# download_url = 'https://github.com/Voyz/databay/archive/v0.1.5.tar.gz',
keywords=['data transfer', 'data production', 'data consumption', 'schedule',
'scheduled data transfer', 'scheduled transfer', 'data flow', 'repeated data transfer'],
'scheduled data transfer', 'scheduled transfer', 'data flow', 'repeated data transfer'],
install_requires=[
'APScheduler<4.0.0',
'schedule<1.0.0'
Expand All @@ -30,11 +29,12 @@
"all": ["aiohttp>=3.6.2", "pymongo>=3.10.1"]
},
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 4 - Beta',
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)
)

0 comments on commit 415f13d

Please sign in to comment.