-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (30 loc) · 1.09 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
31
import setuptools
setuptools.setup(
name="melodia_py",
version="0.1.4",
url="https://github.com/rwmontalvao/Melodia_py",
author="Rinaldo Wander Montalvão, PhD",
author_email="[email protected]",
description="Differential Geometry of Proteins Backbones",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=['biopython>=1.83',
'pandas>=2.2.2',
'typing-extensions>=4.12',
'seaborn>=0.13.2',
'jupyterlab>=4.2.2',
'tqdm>=4.66.4',
'dill>=0.3.8',
'nglview>=3.1.2',
'pyarrow>=16.1.0',
'scikit-learn>=1.5.0',
'sty>=1.0.0',
'more-itertools>=10.3.0'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
],
include_package_data=True,
)