|
4 | 4 | with open("README.md", "r") as fh: |
5 | 5 | long_description = fh.read() |
6 | 6 |
|
7 | | -shic_stats = Extension("diploshic.shicstats", |
8 | | - sources=["diploshic/shicstats.pyf", |
9 | | - "diploshic/utils.c"], |
10 | | - ) |
11 | | -setup(name='diploSHIC', |
12 | | - version='1.0.6', |
13 | | - description='diploSHIC', |
14 | | - long_description=long_description, |
15 | | - long_description_content_type="text/markdown", |
16 | | - url='https://github.com/kr-colab/diploSHIC', |
17 | | - author='Andrew Kern', |
18 | | - |
19 | | - license='MIT', |
20 | | - packages=['diploshic'], |
21 | | - install_requires=['numpy', |
22 | | - 'scipy', |
23 | | - 'matplotlib', |
24 | | - 'pandas', |
25 | | - 'scikit-allel', |
26 | | - 'scikit-learn', |
27 | | - 'tensorflow==2.15.0', |
28 | | - 'keras'], |
29 | | - scripts=['diploshic/diploSHIC', |
30 | | - 'diploshic/makeFeatureVecsForChrArmFromVcfDiploid.py', |
31 | | - 'diploshic/makeFeatureVecsForChrArmFromVcf_ogSHIC.py', |
32 | | - 'diploshic/makeFeatureVecsForSingleMsDiploid.py', |
33 | | - 'diploshic/makeFeatureVecsForSingleMs_ogSHIC.py', |
34 | | - 'diploshic/makeTrainingSets.py'], |
35 | | - zip_safe=False, |
36 | | - extras_require={ |
37 | | - 'dev': [], |
38 | | - }, |
39 | | - setup_requires=[], |
40 | | - ext_modules=[shic_stats] |
| 7 | +shic_stats = Extension( |
| 8 | + "diploshic.shicstats", |
| 9 | + sources=["diploshic/shicstats.pyf", "diploshic/utils.c"], |
| 10 | +) |
| 11 | +setup( |
| 12 | + name="diploSHIC", |
| 13 | + version="1.0.6", |
| 14 | + description="diploSHIC", |
| 15 | + python_requires="<3.12,>=3.10", |
| 16 | + long_description=long_description, |
| 17 | + long_description_content_type="text/markdown", |
| 18 | + url="https://github.com/kr-colab/diploSHIC", |
| 19 | + author="Andrew Kern", |
| 20 | + |
| 21 | + license="MIT", |
| 22 | + packages=["diploshic"], |
| 23 | + install_requires=[ |
| 24 | + "numpy", |
| 25 | + "scipy", |
| 26 | + "matplotlib", |
| 27 | + "pandas", |
| 28 | + "scikit-allel", |
| 29 | + "scikit-learn", |
| 30 | + "tensorflow==2.15.0", |
| 31 | + "keras", |
| 32 | + ], |
| 33 | + scripts=[ |
| 34 | + "diploshic/diploSHIC", |
| 35 | + "diploshic/makeFeatureVecsForChrArmFromVcfDiploid.py", |
| 36 | + "diploshic/makeFeatureVecsForChrArmFromVcf_ogSHIC.py", |
| 37 | + "diploshic/makeFeatureVecsForSingleMsDiploid.py", |
| 38 | + "diploshic/makeFeatureVecsForSingleMs_ogSHIC.py", |
| 39 | + "diploshic/makeTrainingSets.py", |
| 40 | + ], |
| 41 | + zip_safe=False, |
| 42 | + extras_require={ |
| 43 | + "dev": [], |
| 44 | + }, |
| 45 | + setup_requires=[], |
| 46 | + ext_modules=[shic_stats], |
41 | 47 | ) |
0 commit comments