Skip to content

Commit

Permalink
Add package data to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
emjbishop committed May 30, 2024
1 parent b1d2fea commit 8e3f722
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(name='tcrconverter',
version='0.1',
author='Emma Bishop',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_data={"": ["*.csv", "*.fa"]},
install_requires=['pandas'])

0 comments on commit 8e3f722

Please sign in to comment.