ci: drop TravisCI and ReadTheDocs, replaced by Github Actions and mkdocs

This commit is contained in:
Rémi Alvergnat
2020-12-23 01:41:55 +01:00
parent 6e4ead187e
commit 384545e35f
53 changed files with 1214 additions and 3679 deletions
+10 -10
View File
@@ -1,26 +1,26 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import io
import os
import re
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
readme = f.read()
with io.open(os.path.join(here, 'HISTORY.rst'), encoding='utf-8') as f:
history = f.read()
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f:
changelog = f.read()
install_requires = ['rebulk==2.*', 'babelfish', 'python-dateutil', 'six']
setup_requires = ['pytest-runner']
dev_require = ['zest.releaser[recommended]', 'pylint', 'tox', 'sphinx', 'sphinx-autobuild']
dev_require = ['pylint', 'mkdocs', 'mkdocs-material']
tests_require = ['pytest>=3.3', 'pytest-benchmark', 'PyYAML']
@@ -38,26 +38,26 @@ with io.open('guessit/__version__.py', 'r') as f:
args = dict(name='guessit',
version=version,
description='GuessIt - a library for guessing information from video filenames.',
long_description=readme + '\n\n' + history,
long_description=readme + '\n\n' + changelog,
long_description_content_type='text/markdown',
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='python library release parser name filename movies series episodes animes',
author='Rémi Alvergnat',
author_email='toilal.dev@gmail.com',
url='http://guessit.readthedocs.org/',
url='http://guessit.io',
download_url='https://pypi.python.org/packages/source/g/guessit/guessit-%s.tar.gz' % version,
license='LGPLv3',
packages=find_packages(),