pythonPackages.pyuv: refactor move to python-modules
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 5071c3b..4b4a176 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -7,7 +7,6 @@ try:
|
||||
from setuptools import setup, Extension
|
||||
except ImportError:
|
||||
from distutils.core import setup, Extension
|
||||
-from setup_libuv import libuv_build_ext, libuv_sdist
|
||||
|
||||
|
||||
def get_version():
|
||||
@@ -35,11 +34,10 @@ setup(name = "pyuv",
|
||||
"Programming Language :: Python :: 3.3",
|
||||
"Programming Language :: Python :: 3.4"
|
||||
],
|
||||
- cmdclass = {'build_ext': libuv_build_ext,
|
||||
- 'sdist' : libuv_sdist},
|
||||
packages = ['pyuv'],
|
||||
ext_modules = [Extension('pyuv._cpyuv',
|
||||
sources = ['src/pyuv.c'],
|
||||
+ libraries = ['uv']
|
||||
)]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user