-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (42 loc) · 1.3 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
# -*- coding: utf-8 -*-
# Copyright (c) 2017 by Alberto Vara <[email protected]>
import os
from setuptools import setup, find_packages
def read(file):
return open(os.path.join(os.path.dirname(__file__), file))
setup(
name="Pysoundbox",
version="0.0.1",
author="Alberto Vara",
author_email="[email protected]",
description="Sound box in python",
long_description=(read('README.md').read() + '\n\n' + read('CHANGES.rst').read()),
classifiers=[
"Development Status :: 1 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5"
"Programming Language :: Python :: 3.6"
],
license="MIT",
platforms=["any"],
keywords="python, sounds",
url='https://github.com/avara1986/pysoundbox.git',
test_suite='nose.collector',
packages=find_packages(),
entry_points={
'console_scripts': [
'pysoundbox = main:PySoundBox'
]
},
install_requires=[
"pydub>=0.19.0",
"numpy==1.13.0"
],
zip_safe=True,
)