-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 761 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='simAIRR',
version='0.1',
packages=find_packages(exclude=["tests", "test.*"]),
url='',
license='MIT',
author='Chakravarthi Kanduri',
author_email='chakra.kanduri@gmail.com',
description='A tool for simulation of antigen-experienced adaptive immune receptor repertoire (AIRR) datasets for '
'benchmarking of machine learning (ML) methods.',
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
include_package_data=True,
zip_safe=False,
entry_points={'console_scripts': ['sim_airr=simAIRR.simairr_cli.simairr_cli:execute']})