-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 882 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
25
26
27
28
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="glm_mda_diffusion",
version="1.1",
description="Minimum dissipation approximation: A fast algorithm for the prediction of diffusive properties of intrinsically disordered proteins",
url="https://github.com/RadostW/glm-mda-diffusion/",
author="Radost Waszkiewicz",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Documentation": "https://github.com/RadostW/glm_mda_diffusion",
"Source": "https://github.com/RadostW/glm_mda_diffusion",
},
license="GNU GPLv3",
packages=["glm_mda_diffusion"],
install_requires=[
"numpy",
"scipy",
"pygrpy",
"sarw_spheres",
],
zip_safe=False,
)