-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (35 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2023/10/7 16:09
# @Author : lvtongxuan
# @File : setup.py
# @Software: PyCharm
# @Email : [email protected]
import setuptools
from wheel.bdist_wheel import bdist_wheel
__version__ = "1.0.5"
class BDistWheel(bdist_wheel):
def get_tag(self):
return (self.python_tag, "none", "any")
cmdclass = {
"bdist_wheel": BDistWheel,
}
requirements = open("requirements.txt").readline()
setuptools.setup(
name="EAGS",
version=__version__,
author="lvtongxuan",
author_email="[email protected]",
url="https://github.com/STOmics/EAGS.git",
description="EAGS: efficient and adaptive Gaussian smoothing applied to high-resolved spatial transcriptomics",
python_requires=">=3.8",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
cmdclass=cmdclass,
)