From a6e33f7e0da5c09bfe48074f027f3b5f2babddd1 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 9 Oct 2019 20:50:24 -0700 Subject: [PATCH] Added classifiers and upload script --- pypi_upload.sh | 2 ++ setup.py | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 pypi_upload.sh diff --git a/pypi_upload.sh b/pypi_upload.sh new file mode 100755 index 0000000..21ed0a3 --- /dev/null +++ b/pypi_upload.sh @@ -0,0 +1,2 @@ +#!/bin/bash +python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/* diff --git a/setup.py b/setup.py index 6999fbc..fac7fa7 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,10 @@ setup(name='ptulsconv', 'License :: OSI Approved :: MIT License', 'Topic :: Multimedia', 'Topic :: Multimedia :: Sound/Audio', - "Programming Language :: Python :: 3.7"], + "Programming Language :: Python :: 3.7", + "Development Status :: 4 - Beta", + "Topic :: Text Processing :: Filters", + "Topic :: Text Processing :: Markup :: XML"], packages=['ptulsconv'], keywords='text-processing parsers film tv editing editorial', install_requires=['parsimonious'],