-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (23 loc) · 873 Bytes
/
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
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import find_packages, setup
requirements_file_path = Path(__file__).parent / "requirements.txt"
with open(requirements_file_path) as file:
install_requires = file.readlines()
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="jazayeri-lab-to-nwb",
version="0.0.1",
description="NWB conversion scripts, functions, and classes for Jazayeri conversion",
long_description=long_description,
long_description_content_type="text/markdown",
author="CatalystNeuro",
author_email="ben.dichter@catalystneuro.com",
url="https://github.com/catalystneuro/jazayeri-lab-to-nwb",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.8,<3.11",
install_requires=install_requires,
)