7 lines
96 B
Python
7 lines
96 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
package_dir={"": "src"},
|
|
packages=["neurotron"],
|
|
)
|