-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (39 loc) · 1.11 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
from setuptools import setup
import os
from Cython.Build import cythonize
import numpy as np
PACKAGE_DIR = "pypls"
setup(
name="pypls",
version="1.0.3",
description="pypls: A package for statistical analysis using PLS.",
author="Dong Nai-ping",
author_email="[email protected]",
packages=[
"pypls",
"pypls.core"
],
ext_modules=cythonize(
[
os.path.join(PACKAGE_DIR, "core/*.pyx")
],
compiler_directives={
"language_level": "3",
}
),
include_dirs=[
np.get_include()
],
include_package_data=True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft :: Windows :: Windows 10",
"License :: OSI Approved :: Apache License v2",
"Natural Language :: English"
],
)