summarylogtreecommitdiffstats
path: root/setup.py.patch
blob: bd1677b5a0a7fdb52d95c0c80fb822671d86d354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff --git a/setup.py b/setup.py
index 909a3ff..6c20685 100644
--- a/setup.py
+++ b/setup.py
@@ -1,16 +1,12 @@
-from codecs     import open
-from inspect    import getsource
 from os.path    import abspath, dirname, join
 from setuptools import setup
 
-here = abspath(dirname(getsource(lambda:0)))
-
-with open(join(here, 'README.rst'), encoding='utf-8') as f:
+with open('README.rst', encoding='utf-8') as f:
     long_description = f.read()
 
 setup(name             = 'playsound',
       version          = '1.3.0',
-      description      = long_description.splitlines()[2][1:-1],
+      description      = 'Pure Python, cross platform, single function module with no dependencies for playing sounds',
       long_description = long_description,
       url              = 'https://github.com/TaylorSMarks/playsound',
       author           = 'Taylor Marks',