-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (23 loc) · 893 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
25
26
27
import os
from setuptools import setup, find_packages
def read(file_name: str):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name="pcpartpicker",
version="2.2.2",
author="Jonathan Vusich",
author_email="jonathanvusich@gmail.com",
description="A fast, simple API for PCPartPicker.com.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
license="GPL",
keywords="pcpartpicker api webscraper python3",
url="https://github.com/JonathanVusich/pcpartpicker",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", "utils"]),
install_requires=read("requirements.txt"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)