-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 962 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 962 Bytes
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
from setuptools import setup, find_packages
setup(
name='arDCA',
version='0.1.1',
author='Jeanne Trinquier, Lorenzo Rosset, Francesco Zamponi, Martin Weigt',
maintainer='Lorenzo Rosset',
author_email='rosset.lorenzo@gmail.com',
description='Python implementation of autoregressive Direct Coupling Analysis',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/spqb/arDCA',
packages=find_packages(include=['arDCA', 'arDCA.*']),
include_package_data=True,
python_requires='>=3.10',
license_files=["LICENSE"],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'arDCA=arDCA.cli:main',
],
},
install_requires=[
"adabmDCA>=0.3.3",
],
)