-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1.35 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# read the contents of your requirements file
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
setuptools.setup(
name="CRISPR-TAPE",
version="1.0.6",
author="Daniel Anderson",
author_email="[email protected]",
license= "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License",
description="A protein-centric CRISPR gRNA design tool for TArgeted Protein Engineering",
long_description="Existing CRIPSR gRNA design tools target protein-coding regions within genomic loci and non-specifically target the entire input region of DNA. Current tools fail to consider proteomic-based applications, so CRISPR-TAPE has been developed to reduce the substantial time burden associated with manual curation of gRNA libraries and empower the proteomics community." ,
long_description_content_type="text/markdown",
url="https://github.com/LaboratoryChild/CRISPR-TAPE",
install_requires=requirements,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6', # Update this to the minimum supported Python version
)