-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (35 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import glob
import fnmatch
from setuptools import setup, find_packages
def find_files(directory):
matches = []
for root, dirnames, filenames in os.walk(directory):
for filename in fnmatch.filter(filenames, '*'):
matches.append(os.path.join(root, filename))
return matches
setup(name="cosolvkit",
version='0.5.0',
description="CosolvKit",
author="Niccolo Bruciaferri, Jerome Eberhardt",
author_email="[email protected]",
url="https://github.com/forlilab/cosolvkit",
packages=find_packages(exclude=['docs']),
include_package_data=True,
zip_safe=False,
license="LGPL-2.1",
keywords=["molecular modeling", "drug design",
"cosolvent", "MD simulations"],
classifiers=["Programming Language :: Python",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering"],
entry_points={
'console_scripts': [
'create_cosolvent_system=cosolvkit.cli.create_cosolvent_system:main',
'post_simulation_processing=cosolvkit.cli.post_simulation_processing:main'
]
}
)