2020-05-03 03:09:07 +03:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
2020-05-08 21:53:45 +03:00
|
|
|
name="sequence-models",
|
2022-07-15 23:36:31 +03:00
|
|
|
version="1.4.0",
|
2020-05-03 03:09:07 +03:00
|
|
|
author="Kevin Yang",
|
|
|
|
author_email="yang.kevin@microsoft.com",
|
2022-03-18 21:28:02 +03:00
|
|
|
description="Machine learning for sequences.",
|
2020-05-03 03:09:07 +03:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2022-03-18 21:28:02 +03:00
|
|
|
url="https://github.com/microsoft/protein-sequence-models",
|
2020-05-03 03:09:07 +03:00
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2020-05-08 21:53:45 +03:00
|
|
|
include_package_data=True,
|
2020-05-03 03:09:07 +03:00
|
|
|
python_requires='>=3.6',
|
|
|
|
)
|