ctheodoris madhavanvenkatesh commited on
Commit
3b78204
1 Parent(s): 94d98d1

Add find_packages to automatically include mtl and subpackages in setup.py (#410)

Browse files

- Add find_packages to automatically include mtl and subpackages in setup.py (72823c2a24c15c49f1021b85f6462aca5c405aa0)


Co-authored-by: Madhavan Venkatesh <[email protected]>

Files changed (1) hide show
  1. setup.py +2 -2
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=["geneformer"],
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=[