-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 929 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
from setuptools import setup, find_packages
version = '3.0.0'
setup(name='multisearch',
version=version,
description='HI LGS web price scraper for MTG',
url='https://github.com/kylemccreery/multisearch',
author='Kyle McCreery',
author_email='[email protected]',
packages=find_packages(),
install_requires=['BeautifulSoup4','bs4','requests'],
keywords=['multisearch', 'MTG', 'Hawaii', 'LGS'],
license='MIT',
classifiers=[
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3'
])