-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
44 lines (40 loc) · 1.22 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup and build script for the library."""
from setuptools import setup, find_packages
CLASSIFIERS = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
]
setup(
name="DeeFuzzer",
url="http://github.com/yomguy/DeeFuzzer",
description="open, light and instant media streaming tool",
long_description=open('README.rst').read(),
author="Guillaume Pellerin",
author_email="[email protected]",
version='0.9.0',
install_requires=[
'setuptools',
'wheel',
'python-shout==0.2.8',
'python-twitter==3.5',
'mutagen==1.45.1',
'pyliblo3==0.12.0',
'pycurl==7.44.1',
'pyyaml==6.0.1',
'mysqlclient==2.0.3',
],
platforms=['OS Independent'],
license='GPL v3',
scripts=['scripts/deefuzzer'],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3',
)