File size: 1,243 Bytes
53e66de | 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 42 43 | # setup.py
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="CodonTransformer",
version="1.6.7",
packages=find_packages(where="model"),
package_dir={"": "model"},
install_requires=read_requirements(),
author="Adibvafa Fallahpour",
author_email="Adibvafa.fallahpour@mail.utoronto.ca",
description=(
"The ultimate tool for codon optimization, "
"transforming protein sequences into optimized DNA sequences "
"specific for your target organisms."
),
long_description=read_readme(),
long_description_content_type="text/markdown",
url="https://github.com/adibvafa/CodonTransformer",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)
|