-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (42 loc) · 1.28 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
43
44
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="atlas-splitter",
author="Blue Brain Project, EPFL",
description="CLI to split atlas regions and modify annotations accordingly",
url="https://github.com/BlueBrain/atlas-splitter",
download_url="https://github.com/BlueBrain/atlas-splitter",
license="Apache-2",
python_requires=">=3.7.0",
install_requires=[
"atlas-commons>=0.1.4",
"click>=7.0",
"cgal-pybind>=0.1.3",
"numpy>=1.15.0",
"voxcell>=3.0.0",
"pyarrow>=8.0.0",
],
extras_require={
"tests": [
"pytest>=4.4.0",
],
},
packages=find_packages(),
include_package_data=True,
entry_points={"console_scripts": ["atlas-splitter=atlas_splitter.app.cli:cli"]},
use_scm_version={
"local_scheme": "no-local-version",
},
setup_requires=[
"setuptools_scm",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)