-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (51 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# package setup
#
# ------------------------------------------------
# imports
# -------
import os
# config
# ------
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
if os.path.exists('README.md'):
long_description = open('README.md').read()
else:
long_description = 'Non-Covalent Molecular Interaction Rules'
# exec
# ----
setup(
name="molecular_interaction_rules",
version="0.7.2",
packages=find_packages(),
license='GPL',
author="Suliman Sharif",
author_email="[email protected]",
url="https://www.github.com/mackerell-lab/Non-Covalent-Molecular-Interaction-Rules",
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
keywords='molcules non-covalent interactions rules geometry',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)