-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 836 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 836 Bytes
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
30
31
32
import os
from setuptools import setup, Command
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rmdir /Q /S build')
os.system('rmdir /Q /S dist')
os.system('for /d %f in (*egg-info) do rmdir /Q /S %f')
setup(name='TinderBot',
version='0.1',
description='bot for tinder: liking, spamming, holding chats',
author='Beljar',
author_email='ormallen@gmail.com',
packages=['TinderBot'],
install_requires=[
'selenium',
'pychrome',
'requests',
'bs4',
"pyfiglet",
],
zip_safe=False,
cmdclass={
'clean': CleanCommand,
})