mirror of
https://github.com/microsoft/foldingdiff.git
synced 2026-06-06 23:15:55 +08:00
18 lines
488 B
Python
18 lines
488 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r") as source:
|
|
long_description = source.read()
|
|
|
|
setup(
|
|
name="foldingdiff",
|
|
packages=find_packages("foldingdiff"),
|
|
description="Diffusion for protein backbone generation using internal angles",
|
|
long_description=long_description,
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.8",
|
|
version="0.0.1",
|
|
)
|