2016-06-23 14:05:07 +03:00
|
|
|
[buildout]
|
|
|
|
prefer-final = false
|
|
|
|
newest = false
|
|
|
|
download-cache = .cache
|
|
|
|
develop = .
|
2017-08-16 13:07:39 +03:00
|
|
|
parts =
|
2016-06-23 14:05:07 +03:00
|
|
|
|
|
|
|
[project]
|
2016-06-23 15:46:11 +03:00
|
|
|
name = infi.clickhouse_orm
|
2016-06-23 14:05:07 +03:00
|
|
|
company = Infinidat
|
|
|
|
namespace_packages = ['infi']
|
2016-06-23 14:11:20 +03:00
|
|
|
install_requires = [
|
2017-07-26 13:29:23 +03:00
|
|
|
'iso8601 >= 0.1.12',
|
2016-06-28 11:49:43 +03:00
|
|
|
'pytz',
|
|
|
|
'requests',
|
2016-08-01 10:28:10 +03:00
|
|
|
'setuptools',
|
|
|
|
'six'
|
2016-06-28 11:49:43 +03:00
|
|
|
]
|
2016-06-23 15:46:11 +03:00
|
|
|
version_file = src/infi/clickhouse_orm/__version__.py
|
2016-06-23 14:05:07 +03:00
|
|
|
description = A Python library for working with the ClickHouse database
|
2017-06-26 11:09:57 +03:00
|
|
|
long_description = A Python library for working with the ClickHouse database
|
2016-06-23 14:05:07 +03:00
|
|
|
console_scripts = []
|
|
|
|
gui_scripts = []
|
|
|
|
package_data = []
|
|
|
|
upgrade_code = {58530fba-3932-11e6-a20e-7071bc32067f}
|
2016-06-23 15:46:11 +03:00
|
|
|
product_name = infi.clickhouse_orm
|
2016-06-23 14:05:07 +03:00
|
|
|
post_install_script_name = None
|
|
|
|
pre_uninstall_script_name = None
|
2016-06-28 11:11:37 +03:00
|
|
|
homepage = https://github.com/Infinidat/infi.clickhouse_orm
|
2016-06-23 14:05:07 +03:00
|
|
|
|
|
|
|
[isolated-python]
|
|
|
|
recipe = infi.recipe.python
|
2017-08-16 13:07:39 +03:00
|
|
|
version = v2.7.12.4
|
2016-06-23 14:05:07 +03:00
|
|
|
|
|
|
|
[setup.py]
|
|
|
|
recipe = infi.recipe.template.version
|
|
|
|
input = setup.in
|
|
|
|
output = setup.py
|
|
|
|
|
|
|
|
[__version__.py]
|
|
|
|
recipe = infi.recipe.template.version
|
|
|
|
output = ${project:version_file}
|
|
|
|
|
|
|
|
[development-scripts]
|
|
|
|
dependent-scripts = true
|
|
|
|
recipe = infi.recipe.console_scripts
|
|
|
|
eggs = ${project:name}
|
2017-05-15 13:11:20 +03:00
|
|
|
ipython<6
|
2016-06-23 14:05:07 +03:00
|
|
|
nose
|
2016-08-31 15:26:28 +03:00
|
|
|
coverage
|
|
|
|
enum34
|
2016-06-23 14:05:07 +03:00
|
|
|
infi.unittest
|
|
|
|
infi.traceback
|
2017-04-06 15:11:00 +03:00
|
|
|
memory_profiler
|
|
|
|
profilehooks
|
|
|
|
psutil
|
2016-06-23 14:05:07 +03:00
|
|
|
zc.buildout
|
2016-06-23 15:10:49 +03:00
|
|
|
scripts = ipython
|
2016-06-28 11:49:43 +03:00
|
|
|
nosetests
|
2016-06-23 14:05:07 +03:00
|
|
|
interpreter = python
|
|
|
|
|
|
|
|
[pack]
|
|
|
|
recipe = infi.recipe.application_packager
|
|
|
|
|
|
|
|
[sublime]
|
|
|
|
recipe = corneti.recipes.codeintel
|
|
|
|
eggs = ${development-scripts:eggs}
|
|
|
|
|