-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
28 lines (26 loc) · 896 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
import setuptools
with open("PyPI.md", "r") as fh:
long_description = fh.read()
# Run setup tools...
setuptools.setup(
name="nrf24",
version="2.0.0",
keywords='nrf24l01 iot raspberry arduino',
author="Bjarne Hansen",
author_email="[email protected]",
license='MIT',
description="A package enabling communication using NRF24L01 modules.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bjarne-hansen/py-nrf24",
package_dir={"": "src"},
packages=setuptools.find_namespace_packages(where="src"),
install_requires=['pigpio'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)