-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 819 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 819 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
from setuptools import setup
setup(name='ohno',
version='1.0',
description='',
author='!(spandan ke deewane) anymore',
license='MIT',
packages=['ohno'],
install_requires=[
'beautifulsoup4==4.7.1',
'certifi==2018.11.29',
'chardet==3.0.4',
'EasyProcess==0.2.5',
'idna==2.8',
'lxml==4.3.0',
'python-dateutil==2.7.5',
'PyVirtualDisplay==0.2.1',
'requests==2.21.0',
'selenium==3.141.0',
'six==1.12.0',
'soupsieve==1.6.2',
'urllib3==1.24.2',
'pyxhook==1.0.0',
'python-xlib==0.23'
],
entry_points={"console_scripts": ["ohno = ohno:entry", "cprog = ohno:centry", "todo = ohno:tentry"]},
zip_safe=False)