-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
46 lines (45 loc) · 1.44 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
setup(name='slash',
version='3.0',
description='Slash is a command line tool that scrapes the most popular e-commerce websites to get the best deals on the searched items across these websites.',
author='Anshul, Bhavya, Darshan, Pragna, Rohan',
author_email='rohan22shah@gmail.com',
url='https://github.com/rohan22shah/slash-phase3.git',
packages=['slash'],
long_description="""\
Hands on for the standard github repo files.
.gitignore
.travis.yml
CITATION.md : fill on once you've got your ZENODO DOI going
CODE-OF-CONDUCT.md
CONTRIBUTING.md
LICENSE.md
README.md
setup.py
requirements.txt
test/
README.md
src/
__init__.py
""",
classifiers=[
"License :: MIT License",
"Programming Language :: Python",
"Development Status :: Initial",
"Intended Audience :: Developers",
"Topic :: Software Engineering",
],
keywords='python requirements license gitignore',
license='MIT',
install_requires=[
'BeautifulSoup',
'pytest',
'uvicorn',
'streamlit',
'webdriver_manager',
'pyshorteners',
'ebaysdk',
'requests',
'pandas'
],
)