Skip to content

Commit

Permalink
Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellShibilski-Unkel committed May 10, 2024
1 parent 7b5dc06 commit 6b54934
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from setuptools import setup, find_packages
import codecs
import os

here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = 'v8.0'
DESCRIPTION = 'PyPC'
LONG_DESCRIPTION = '-'

# Setting up
setup(
name="PyPC",
version=VERSION,
author="Mitchell Shibilski-Unkel",
author_email="None",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=['speedtest', 'numpy', 'os', 'platform', 'psutil', 'cpuinfo', 'time', 'random', 'multiprocessing'],
keywords=['pypc', 'speed-test'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)

0 comments on commit 6b54934

Please sign in to comment.