Skip to content

Commit 8f5cdbc

Browse files
committed
Bump version to 0.2.0
1 parent 69ac95f commit 8f5cdbc

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

setup.py

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,21 @@
99
glob.glob("lib2bit/*.c")]
1010
srcs.append("py2bit.c")
1111

12-
#libs=[]
13-
#if sysconfig.get_config_vars('BLDLIBRARY') is not None:
14-
# #Note the "-l" prefix!
15-
# for e in sysconfig.get_config_vars('BLDLIBRARY')[0].split():
16-
# if e[0:2] == "-l":
17-
# libs.append(e[2:])
18-
#elif(sys.version_info[0] >= 3 and sys.version_info[1] >= 3) :
19-
# libs.append("python%i.%im" % (sys.version_info[0], sys.version_info[1]))
20-
#else :
21-
# libs.append("python%i.%i" % (sys.version_info[0], sys.version_info[1]))
22-
2312
additional_libs = [sysconfig.get_config_var("LIBDIR"), sysconfig.get_config_var("LIBPL")]
2413

2514
module1 = Extension('py2bit',
2615
sources = srcs,
27-
# libraries = libs,
2816
library_dirs = additional_libs,
2917
include_dirs = ['lib2bit', sysconfig.get_config_var("INCLUDEPY")])
3018

3119
setup(name = 'py2bit',
32-
version = '0.1.0',
20+
version = '0.2.0',
3321
description = 'A package for accessing 2bit files using lib2bit',
3422
author = "Devon P. Ryan",
3523
author_email = "ryan@ie-freiburg.mpg.de",
3624
url = "https://github.com/dpryan79/py2bit",
3725
license = "MIT",
38-
download_url = "https://github.com/dpryan79/py2bit/tarball/0.1.0",
26+
download_url = "https://github.com/dpryan79/py2bit/tarball/0.2.0",
3927
keywords = ["bioinformatics", "2bit"],
4028
classifier = ["Development Status :: 5 - Production/Stable",
4129
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)