forked from Okonce/CIMtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (57 loc) · 2.81 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
56
57
58
59
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2016-2018 Ramil Nugmanov <stsouko@live.ru>
# This file is part of MODtools.
#
# MODtools is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
from CIMtools.version import version
from pathlib import Path
from setuptools import setup, find_packages
setup(
name='CIMtools',
version=version(),
packages=find_packages(),
zip_safe=True,
url='https://github.com/stsouko/CIMtools',
license='AGPLv3',
author='Dr. Ramil Nugmanov',
author_email='stsouko@live.ru',
description='Modeler tools',
package_data={'CIMtools.preprocessing.standardize': ['horvat.unwanted', 'horvat.xml']},
install_requires=['CGRtools>=2.8.23,<2.9', 'pandas>=0.22.0,<0.24', 'scikit-learn>=0.19.0,<0.21',
'requests>=2.18.4,<2.20', 'scipy>=1.0.0,<1.2', 'pyparsing>=2.2.0,<2.3'],
long_description=(Path(__file__).parent / 'README.md').open().read(),
keywords="chemoinformatics tools modeler cli ISIDA Framentor EED SVM IAP",
classifiers=['Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
command_options={'build_sphinx': {'project': ('setup.py', 'CIMtools'),
'version': ('setup.py', version()), 'source_dir': ('setup.py', 'doc'),
'build_dir': ('setup.py', 'build/doc'),
'all_files': ('setup.py', True),
'copyright': ('setup.py', 'Dr. Ramil Nugmanov <stsouko@live.ru>')},
'easy_install': {'allow_hosts': ('setup.py', 'github.com, pypi.python.org')}}
)