Packaging

This commit is contained in:
Soxoj
2020-12-05 01:21:45 +03:00
parent 1b5862063d
commit 285f72a285
3 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -9,6 +9,6 @@ requests-futures>=1.0.0
soupsieve>=1.9.2
stem>=1.8.0
torrequest>=0.1.0
git+https://github.com/soxoj/socid_extractor
socid-extractor>=0.0.2
aiohttp==3.5.4
mock==4.0.2
+3
View File
@@ -0,0 +1,3 @@
[egg_info]
tag_build =
tag_date = 0
+22
View File
@@ -0,0 +1,22 @@
from setuptools import (
setup,
find_packages,
)
with open('README.md') as fh:
long_description = fh.read()
long_description.replace('./', 'https://raw.githubusercontent.com/soxoj/maigret/main/')
setup(name='maigret',
version='0.1.0',
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']},
packages=find_packages(),
author='Soxoj',
author_email='soxoj@protonmail.com',
license='MIT',
zip_safe=False)