-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
53 lines (48 loc) · 1.43 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""
###################
## ##
## Pi-Clap ##
## ##
###################
Repo: https://github.com/nikhiljohn10/pi-clap
Author: Nikhil John
License: MIT
"""
from piclap import __version__ as VERSION
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pi-clap",
version=VERSION,
author="Nikhil John",
author_email="ceo@jwala.diamonds",
description="A python package for clap detection",
url="https://pi-clap.nikz.in",
long_description=long_description,
long_description_content_type="text/markdown",
download_url="https://github.com/nikhiljohn10/pi-clap",
packages=find_packages(),
license="MIT",
classifiers=[
"Intended Audience :: Developers",
'Environment :: Console',
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
platforms="any",
py_modules=['piclap'],
python_requires='>=3.6',
install_requires=[
"gpiozero==1.5.1",
"pyaudio==0.2.11",
"munch==2.5.0",
],
)