forked from thefakequake/pypartpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 1.13 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(name='pypartpicker',
version='1.9.1',
description='A package that scrapes pcpartpicker.com and returns the results as objects.',
packages=['pypartpicker'],
url='https://github.com/thefakequake/pypartpicker',
keywords = ['pcpartpicker', 'scraper', 'list', 'beautifulsoup', 'pc', 'parts'],
author_email='[email protected]',
install_requires=['bs4', 'requests'],
zip_safe=False,
download_url = "https://github.com/thefakequake/pypartpicker/archive/refs/tags/v1.9.1.tar.gz",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
])