-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 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
41
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('sady/cli.py').read(),
re.M
).group(1)
# enjoy commandline use for search and play
# any music available in soundclound
setup(
name='sady',
version=version,
author='Dung Nguyen Tri',
author_email='[email protected]',
description=u'A cmd soundclound player (๑˃̵ᴗ˂̵)',
license='MIT',
keywords='cmd, terminal, soundclound, music, player',
url='https://github.com/dungntnew/sady',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Multimedia :: Sound/Audio :: Players',
],
packages=find_packages(),
include_package_data=True,
test_suite='tests',
install_requires=requirements,
entry_points={
'console_scripts': [
'sady = sady.cli:start'
]
}
)