From 088f063f63fad7336e877f9ee4ea1f981fa34bff Mon Sep 17 00:00:00 2001 From: Devon Ryan Date: Tue, 21 Jan 2025 15:41:08 +0100 Subject: [PATCH] try removing setup.py --- setup.py | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100755 setup.py diff --git a/setup.py b/setup.py deleted file mode 100755 index bc10a0a..0000000 --- a/setup.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env python -from setuptools import setup, Extension, find_packages -from distutils import sysconfig -import subprocess -import glob -import sys - -srcs = [x for x in - glob.glob("lib2bit/*.c")] -srcs.append("py2bit.c") - -additional_libs = [sysconfig.get_config_var("LIBDIR"), sysconfig.get_config_var("LIBPL")] - -module1 = Extension('py2bit', - sources = srcs, - library_dirs = additional_libs, - include_dirs = ['lib2bit', sysconfig.get_config_var("INCLUDEPY")]) - -setup(name = 'py2bit', - version = '0.3.3', - description = 'A package for accessing 2bit files using lib2bit', - author = "Devon P. Ryan", - author_email = "dpryan79@gmail.com", - url = "https://github.com/deeptools/py2bit", - license = "MIT", - download_url = "https://github.com/deeptools/py2bit", - keywords = ["bioinformatics", "2bit"], - classifier = ["Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "License :: OSI Approved", - "Programming Language :: C", - "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: Implementation :: CPython", - "Operating System :: POSIX", - "Operating System :: Unix", - "Operating System :: MacOS"], - packages = find_packages(), - include_package_data=True, - ext_modules = [module1])