Spaces:
Sleeping
Sleeping
File size: 1,235 Bytes
404d784 | 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 31 32 33 34 35 36 37 38 39 40 41 | import os
from setuptools import find_packages, setup
def read_requirements():
with open("requirements.txt") as f:
return [line.strip() for line in f if line.strip() and not line.startswith("#")]
def read_readme():
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.md")
with open(readme_path, "r", encoding="utf-8") as f:
return f.read()
setup(
name="ENCOT",
version="1.0.0",
packages=find_packages(),
install_requires=read_requirements(),
author="Adibvafa Fallahpour",
author_email="Adibvafa.fallahpour@mail.utoronto.ca",
description=(
"Transformer-based codon optimization for E. coli using "
"deep learning with Augmented-Lagrangian GC control. "
"Built on CodonTransformer for E. coli-specific optimization."
),
long_description=read_readme(),
long_description_content_type="text/markdown",
url="https://github.com/geno543/ENCOT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)
|