|
9 | 9 | glob.glob("lib2bit/*.c")]
|
10 | 10 | srcs.append("py2bit.c")
|
11 | 11 |
|
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 |
| - |
23 | 12 | additional_libs = [sysconfig.get_config_var("LIBDIR"), sysconfig.get_config_var("LIBPL")]
|
24 | 13 |
|
25 | 14 | module1 = Extension('py2bit',
|
26 | 15 | sources = srcs,
|
27 |
| - # libraries = libs, |
28 | 16 | library_dirs = additional_libs,
|
29 | 17 | include_dirs = ['lib2bit', sysconfig.get_config_var("INCLUDEPY")])
|
30 | 18 |
|
31 | 19 | setup(name = 'py2bit',
|
32 |
| - version = '0.1.0', |
| 20 | + version = '0.2.0', |
33 | 21 | description = 'A package for accessing 2bit files using lib2bit',
|
34 | 22 | author = "Devon P. Ryan",
|
35 | 23 | author_email = "ryan@ie-freiburg.mpg.de",
|
36 | 24 | url = "https://github.com/dpryan79/py2bit",
|
37 | 25 | 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", |
39 | 27 | keywords = ["bioinformatics", "2bit"],
|
40 | 28 | classifier = ["Development Status :: 5 - Production/Stable",
|
41 | 29 | "Intended Audience :: Developers",
|
|
0 commit comments