generated from soxoj/osint-cli-tool-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
exec(open('odnoklassniki_checker/_version.py').read())
with open('requirements.txt') as rf:
requires = rf.read().splitlines()
with open('README.md') as fh:
long_description = fh.read()
setup(
name="odnoklassniki_checker",
version=__version__,
description="A skeleton for OSINT CLI tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/soxoj/osint-cli-tool-skeleton",
author="Soxoj",
author_email="soxoj@protonmail.com",
entry_points={'console_scripts': ['odnoklassniki_checker = odnoklassniki_checker.__init__:run']},
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=requires,
)