-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from tyo-nu/develop
Develop
- Loading branch information
Showing
3 changed files
with
24 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,11 @@ | ||
|
||
from setuptools import setup | ||
|
||
|
||
# Most arguments are set in the `setup.cfg`. | ||
# TODO fix this | ||
setup(version=0.1) | ||
|
||
from setuptools import setup | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup(name='minedatabase', | ||
version='1.0.0', | ||
version='2.0.0', | ||
description='Metabolic In silico Network Expansions', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
@@ -22,19 +14,18 @@ | |
author_email='[email protected]', | ||
license='MIT', | ||
packages=setuptools.find_packages(), | ||
install_requires=['pymongo'], | ||
install_requires=['mordred', 'pymongo', 'scikit-learn<=0.23.2', 'seaborn'], | ||
package_data={'minedatabase': ['data/*'], | ||
'minedatabase.NP_Score': ['*.gz'], | ||
'minedatabase.tests': ['data/*'], | ||
}, | ||
include_package_data=True, | ||
extras_require={}, | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics', | ||
'Topic :: Scientific/Engineering :: Chemistry', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
) |