forked from rubenvdvijver/PESViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 661 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 661 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name = "PESViewer",
version = "1.0",
packages = find_packages(),
entry_points={'console_scripts':[
'pesviewer = pesviewer.pesviewer:main',
]},
install_requires=['matplotlib','numpy','Pillow'],
author="Ruben Van de Vijver",
author_email = "vandevijver.ruben@gmail.com",
long_description=long_description,
long_description_type='text/markdown',
description = "Depiction of Potential Energy Surfaces.",
license = "MIT",
url = "https://github.com/rubenvdvijver/PESViewer.git",
)