Skip to content

Commit

Permalink
revert to setup.py for now
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Oct 31, 2023
1 parent b240402 commit 4eb2ab3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 45 deletions.
45 changes: 0 additions & 45 deletions python/pyproject.toml

This file was deleted.

41 changes: 41 additions & 0 deletions python/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
from setuptools import setup, find_packages

__version__ = '0.1.3'

setup(
name='dendro',
version=__version__,
author="Jeremy Magland, Luiz Tauffer",
author_email="jmagland@flatironinstitute.org",
url="https://github.com/flatironinstitute/dendro",
description="Web framework for neurophysiology data analysis",
packages=find_packages(include=['dendro']),
include_package_data=True,
install_requires=[
'click',
'simplejson',
'numpy',
'PyYAML',
'remfile',
'pydantic',
'cryptography',
'h5py>=3.10.0'
],
extras_require={
'compute_resource': [
'pubnub>=7.2.0'
],
'api': [
'fastapi',
'motor',
'simplejson',
'pydantic',
'aiohttp'
]
},
entry_points={
"console_scripts": [
"dendro=dendro.cli:main",
],
}
)

0 comments on commit 4eb2ab3

Please sign in to comment.