-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 1.08 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
import setuptools
packages = ['sugar', 'sugar/utils']
setuptools.setup(
name="sugar",
version='v0.1',
author="Ning An",
author_email="[email protected]",
description="",
packages=packages,
package_data={
"utils": [
"neigh_indices/*.sphere",
"neigh_indices/*.npz",
],
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: "
# "Operating System :: OS Independent",
],
python_requires='>=3.8',
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
# install_requires=['peppercorn'], # Optional
install_requires=['numpy', 'scipy', 'nibabel'],
)