-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 810 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
31
32
33
34
35
#!/usr/bin/env python3
# author: Kevin T. Lee<[email protected]>
# description: the setuptools control
from setuptools import setup
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name="dj-beat",
packages=["djbeat"],
entry_points={
"console_scripts": ['djbeat = djbeat.djbeat:main']
},
version='0.4.9',
description="A simple CLI tool for generating beat marks of music for FCPX and PRE",
license="MIT",
install_requires=[
'Cython',
'numpy',
'tqdm',
'madmom',
'librosa',
'pyfiglet',
'urllib3'
],
# long_description=long_descr,
include_package_data=True,
author="Kevin T. Lee",
author_email="[email protected]",
url="http://lidengju.com/dj-beat",
)