Static links fixes, fixes for Pypi

This commit is contained in:
Soxoj
2020-12-05 01:24:12 +03:00
parent 285f72a285
commit 7997ade3c5
11 changed files with 60 additions and 585 deletions
+9 -4
View File
@@ -5,17 +5,22 @@ from setuptools import (
with open('README.md') as fh:
long_description = fh.read()
long_description.replace('./', 'https://raw.githubusercontent.com/soxoj/maigret/main/')
readme = fh.read()
long_description = readme.replace('./', 'https://raw.githubusercontent.com/soxoj/maigret/main/')
with open('requirements.txt') as rf:
requires = rf.read().splitlines()
setup(name='maigret',
version='0.1.0',
version='0.1.6',
description='Collect a dossier on a person by username from a huge number of sites',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/soxoj/maigret',
entry_points={'console_scripts': ['maigret = maigret.cli:run']},
install_requires=requires,
entry_points={'console_scripts': ['maigret = maigret.maigret:run']},
packages=find_packages(),
include_package_data=True,
author='Soxoj',
author_email='soxoj@protonmail.com',
license='MIT',