2 Commits

Author SHA1 Message Date
msramalho
f962878354 Bump version to v1.0.3 for release 2023-03-13 09:54:14 +00:00
msramalho
6b4ceaae61 attempts at fixing CLI issues #18 2023-03-13 09:54:06 +00:00
2 changed files with 10 additions and 5 deletions

View File

@@ -1,15 +1,20 @@
import setuptools
from setuptools import setup, find_packages
from tiktok_hashtag_analysis.version import __version__
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
setup(
name="tiktok-hashtag-analysis",
version=__version__,
author="Bellingcat",
author_email="tech@bellingcat.com",
packages=["tiktok_hashtag_analysis"],
package_data={
"tiktok_hashtag_analysis": [
"logging.config",
]
},
description="Analyze hashtags within posts scraped from TikTok",
long_description=long_description,
long_description_content_type="text/markdown",
@@ -22,10 +27,10 @@ setuptools.setup(
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3'
],
],
entry_points={
"console_scripts": [
"tiktok_hashtag_analysis=tiktok_hashtag_analysis.__main__:main",
"tiktok-hashtag-analysis=tiktok_hashtag_analysis.__main__:main",
]
},
)

View File

@@ -3,7 +3,7 @@ _MAJOR = "1"
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "2"
_PATCH = "3"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""