Merge pull request #96 from matega/master

Removed ext_modules section from magneticod/setup.py
This commit is contained in:
Bora M. Alper 2017-06-12 22:12:29 +03:00 committed by GitHub
commit 11f573a01d

View File

@ -10,7 +10,6 @@ def read_file(path):
def run_setup():
install_requirements = [
"appdirs >= 1.4.3",
"bencoder.pyx >= 1.1.3",
"humanfriendly",
"better_bencode >= 0.2.1"
]
@ -44,14 +43,7 @@ def run_setup():
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
],
ext_modules=[
Extension(
"magneticod.bencoder._fast",
sources=["magneticod/bencoder/_fast.c"],
),
],
]
)