-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 924 Bytes
/
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
from setuptools import setup, find_packages
import EMDA
with open("README.md", "r") as f:
long_description = f.read()
#version='0.2.0a0'
#version='{{VERSION_PLACEHOLDER}}'
setup(
name="EasyMDA",
version=EMDA.__version__,
description="Easy MD Analysis (EMDA) is a Python package created with the aim of providing an easy, yet powerful way to perform analysis of MD simulations.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Miquel Canyelles Niño",
author_mail="[email protected]",
packages=find_packages(where='.'),
include_package_data=True,
install_requires=["MDAnalysis", "tqdm", "matplotlib"],
keywords="biochemistry, simulations, MDAnalysis, molecular dynamics",
url="https://github.com/MolBioMedUAB/EMDA",
download_url=f"https://github.com/MolBioMedUAB/EMDA/archive/refs/tags/{EMDA.__version__}.tar.gz",
)