Go to the source code of this file.
|
tuple | setup.CONDA_BUILD = int(os.environ.get('CONDA_BUILD', '0')) |
|
tuple | setup.here = os.path.abspath(os.path.dirname(__file__)) |
|
tuple | setup.long_description = f.read() |
|
tuple | setup.spec = importlib.util.spec_from_file_location("omnisci_version", os.path.join(here, 'omnisci', 'version.py')) |
|
tuple | setup.version_module = importlib.util.module_from_spec(spec) |
|
tuple | setup.VERSION = version_module.get_source_version() |
|
list | setup.install_requires |
|
list | setup.doc_requires = ['sphinx', 'numpydoc', 'sphinx-rtd-theme'] |
|
list | setup.test_requires = ['coverage', 'pytest', 'pytest-mock', 'pandas'] |
|
list | setup.dev_requires = doc_requires+test_requires+['pre-commit'] |
|
| setup.complete_requires = dev_requires |
|
dictionary | setup.extra_requires |
|
string | setup.name = "pyomniscidb" |
|
string | setup.description = "A DB API 2 compatible client for OmniSci (formerly MapD)." |
|
string | setup.long_description_content_type = 'text/x-rst' |
|
string | setup.url = "https://github.com/omnisci/omniscidb" |
|
string | setup.author = "OmniSci" |
|
string | setup.author_email = "community@omnisci.com" |
|
string | setup.license = "Apache Software License" |
|
string | setup.python_requires = ">=3.7" |
|
list | setup.classifiers |
|
tuple | setup.packages = find_packages() |
|
| setup.version = VERSION, |
|
| setup.extras_require = extra_requires, |
|