-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 815 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name="crosschexcloudapi", # package name
version="0.1.0",
description="Anviz CrossChex Cloud API Python integration library",
author="Sreethul Krishna",
author_email="sreethulkrishna24@gmail.com",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"requests>=2.28.0",
],
url="https://github.com/KSreethul/crosschexcloudapi",
license="LGPL-3.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Hardware Drivers",
],
)