Skip to content

Commit

Permalink
Merge pull request #6 from miermans/release/1.0.0
Browse files Browse the repository at this point in the history
Minor cleanup to setup.py
  • Loading branch information
mmiermans committed Jul 4, 2022
2 parents eba8661 + 8b78f08 commit 2c79eea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aio_snowplow_tracker/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
License: Apache License Version 2.0
"""

__version_info__ = (1, 0, '0a3')
__version_info__ = (1, 0, 0)
__version__ = ".".join(str(x) for x in __version_info__)
__build_version__ = __version__ + ''
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
'Alexander Dean',
'Fred Blundun',
'Paul Boocock',
'Matt Miermans'
'Matt Miermans',
]
authors_str = ', '.join(authors_list)

Expand All @@ -43,7 +43,7 @@

setup(
name='aio-snowplow-tracker',
version='1.0.0a3',
version='1.0.0',
author=authors_str,
author_email=authors_email_str,
packages=[
Expand All @@ -55,7 +55,7 @@
url='https://github.com/miermans/aio-snowplow-python-tracker',
license='Apache License 2.0',
description='Asyncio Snowplow event tracker for Python. '
'Add analytics to your Python and Django apps, webapps and games',
'Add analytics to your Python and Django apps, webapps and games.',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',

Expand All @@ -70,6 +70,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
],

install_requires=[
Expand All @@ -79,12 +80,10 @@

extras_require={
"celery": [
"celery>=4.0,<5.0;python_version<'3.0'",
"celery>=4.0;python_version>='3.0'"
"celery>=4.0"
],
"redis": [
"redis>=2.9.1,<4.0;python_version<'3.0'",
"redis>=2.9.1;python_version>='3.0'",
"redis>=2.9.1",
"gevent>=21.1.2"
]
},
Expand Down

0 comments on commit 2c79eea

Please sign in to comment.