-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 772 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 772 Bytes
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
from setuptools import setup, find_packages
VERSION = "0.0.1"
DESCRIPTION = "A simple library for Python beginners"
setup(
name="easyPythonpi",
version=VERSION,
author="extinctsion (Aditya Sharma)",
author_email="<extinctsion@protonmail.com>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"numpy>=1.19.5",
"requests>=2.25.1",
],
keywords=["python", "sorting", "beginners", "sockets"],
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)