-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
30 lines (28 loc) · 859 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
29
30
from setuptools import setup, find_packages
from soundmeter import __version__
setup(
name='soundmeter',
version=__version__,
description="Simple real-time sound meter.",
long_description=open('README.rst').read(),
keywords='soundmeter',
author='Shichao An',
author_email='[email protected]',
url='https://github.com/shichao-an/soundmeter',
license='BSD',
install_requires=open('requirements.txt').read().splitlines(),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'soundmeter = soundmeter.meter:main',
],
},
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
],
)