madhavanvenkatesh
commited on
Commit
•
72823c2
1
Parent(s):
94d98d1
Add find_packages to automatically include mtl and subpackages in setup.py
Browse files
setup.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from setuptools import setup
|
2 |
|
3 |
setup(
|
4 |
name="geneformer",
|
@@ -10,7 +10,7 @@ setup(
|
|
10 |
cell transcriptomes to enable context-aware \
|
11 |
predictions in settings with limited data in \
|
12 |
network biology.",
|
13 |
-
packages=
|
14 |
python_requires=">=3.10",
|
15 |
include_package_data=True,
|
16 |
install_requires=[
|
|
|
1 |
+
from setuptools import setup, find_packages
|
2 |
|
3 |
setup(
|
4 |
name="geneformer",
|
|
|
10 |
cell transcriptomes to enable context-aware \
|
11 |
predictions in settings with limited data in \
|
12 |
network biology.",
|
13 |
+
packages=find_packages(),
|
14 |
python_requires=">=3.10",
|
15 |
include_package_data=True,
|
16 |
install_requires=[
|