mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-07 06:24:35 +00:00
Packaging
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
@@ -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)
|
||||
Reference in New Issue
Block a user