-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 861 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
26
27
28
29
from setuptools import setup, find_packages
import pathlib
import pkg_resources
with pathlib.Path('requirements.txt').open() as requirements_txt:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
setup(
name="Tinder Bot",
version="1.0.1",
description="The bot which decide to like or dislike a tinder date, depends on you prefers.",
author="Aleksandr Kasian",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=install_requires,
entry_points={
'console_scripts':[
'bot_start = application.entry',
'validation = application.validation_entry',
'img_scrap = application.image_sorting_entry'
]
}
)