-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 890 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
28
from setuptools import setup, find_packages
setup(
name="ncplib",
version="6.1.0",
license="BSD",
description="CRFS NCP library for Python 3.",
author="Dave Hall",
author_email="[email protected]",
url="https://github.com/CRFS/python3-ncplib",
packages=find_packages(exclude=["tests", "examples"]),
package_data={"ncplib": ["py.typed"]},
install_requires=[
"async_timeout>=3.0,<5.0",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)