-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·40 lines (33 loc) · 1.01 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def path(fname=''):
return os.path.abspath(os.path.join(os.path.dirname(__file__), fname))
def readfile(fname):
with open(path(fname)) as f:
return f.read()
setup(
name="micmon",
version="0.1",
author="Fabio Manganiello",
author_email="[email protected]",
description="Programmable Tensorflow-based sound/noise detector",
license="MIT",
python_requires='>= 3.6',
keywords="machine-learning tensorflow sound-detection",
url="https://github.com/BlackLight/micmon",
packages=find_packages(),
include_package_data=True,
long_description=readfile('README.md'),
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'micmon-datagen=micmon.utils.datagen:main',
],
},
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
],
)