Skip to content

Commit c644926

Browse files
committed
Initialize package.
1 parent 373eac2 commit c644926

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[metadata]
2+
name = brainplotlib
3+
version = 0.1.0
4+
author = Ma Feilong
5+
author_email = mafeilong@gmail.com
6+
description = A lightweight package to plot brain surfaces with Python.
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
keywords = brain, surface, fmri, plotting, visualization
10+
url = https://github.com/feilong/brainplotlib
11+
project_urls =
12+
Bug Tracker = https://github.com/feilong/brainplotlib/issues
13+
classifiers =
14+
Programming Language :: Python :: 3
15+
16+
[options]
17+
package_dir =
18+
= src
19+
packages = find:
20+
python_requires = >=3.6
21+
include_package_data = True
22+
23+
[options.package_data]
24+
brainplotlib =
25+
data/*.npy
26+
27+
[options.packages.find]
28+
where = src

0 commit comments

Comments
 (0)