-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (39 loc) · 1.28 KB
/
setup.cfg
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
43
44
45
46
47
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = nlcpy
description = NLCPy is a package for accelerating performance of Python scripts using NumPy on SX-Aurora TSUBASA.
long_description = file:README.md
long_description_content_type = text/markdown
keywords = nlcpy
license = BSD 3-Clause
classifiers=
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: C
Programming Language :: Cython
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Topic :: Software Development
url = https://github.com/SX-Aurora/nlcpy/
project_urls=
Bug Tracker = https://github.com/SX-Aurora/nlcpy/issues
Documentation = https://www.hpc.nec/documents/nlcpy/en/index.html
author = NEC
author_email = [email protected]
[options]
zip_safe=False
include_package_data=True
packages=find:
python_requires= >=3.6,<3.9
install_requires=
numpy>=1.17
[options.package_data]
* = *.so
[options.extras_require]
dev = check-manifest
test = coverage
[options.packages.find]