-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,18 @@ def cythonize_helper(extension_modules: List[Extension]) -> List[Extension]: | |
force=True, | ||
) | ||
|
||
CLASSIFIERS = ''' | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Science/Research | ||
Intended Audience :: Developers | ||
License :: OSI Approved | ||
Programming Language :: Python | ||
Topic :: Software Development | ||
Topic :: Scientific/Engineering | ||
Operating System :: POSIX | ||
Operating System :: Unix | ||
Operating System :: MacOS | ||
''' | ||
|
||
|
||
def build(): | ||
|
@@ -64,6 +76,19 @@ def build(): | |
|
||
# Use Setuptools to collect files | ||
distribution = Distribution({ | ||
"name": "bwapy", | ||
'version': '0.0.1', # FIXME | ||
'description': 'Todo', # FIXME | ||
'long_description': 'FIXME', | ||
'long_description_content_type': 'text/x-rst', | ||
'author': 'Nils Homer', | ||
'author_email': '[email protected]', | ||
'license': 'MIT', | ||
'platforms': ['POSIX', 'UNIX', 'MacOS'], | ||
'classifiers': [_f for _f in CLASSIFIERS.split('\n') if _f], | ||
'url': 'https://github.com/fulcrumgenomics/bwapy', | ||
'packages': ['bwapy'], | ||
'package_dirs': {'bwapy': 'bwapy'}, | ||
"ext_modules": extension_modules, | ||
"cmdclass": { | ||
"build_ext": cython_build_ext, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import bwapy.libbwapy as libbwapy | ||
from bwapy.libbwapy import * # noqa: F403 | ||
|
||
__all__ = libbwapy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters