mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-08-02 19:20:14 +03:00
fix enum
This commit is contained in:
parent
dea45b896d
commit
260f33f40a
49
setup.py
49
setup.py
|
@ -1,13 +1,11 @@
|
||||||
SETUP_INFO = dict(
|
SETUP_INFO = dict(
|
||||||
name = 'infi.clickhouse_orm',
|
name='infi.clickhouse_orm',
|
||||||
version = '2.13.rvm',
|
version='2.13.rvm',
|
||||||
|
url='https://github.com/ROmamo/infi.clickhouse_orm',
|
||||||
url = 'https://github.com/ROmamo/infi.clickhouse_orm',
|
license='BSD',
|
||||||
license = 'BSD',
|
description="""A Python library for working with the ClickHouse database""",
|
||||||
description = """A Python library for working with the ClickHouse database""",
|
|
||||||
|
|
||||||
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
classifiers = [
|
classifiers=[
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"Intended Audience :: System Administrators",
|
"Intended Audience :: System Administrators",
|
||||||
"License :: OSI Approved :: BSD License",
|
"License :: OSI Approved :: BSD License",
|
||||||
|
@ -18,34 +16,33 @@ SETUP_INFO = dict(
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
"Topic :: Database"
|
"Topic :: Database"
|
||||||
],
|
],
|
||||||
|
install_requires=[
|
||||||
install_requires = [
|
'iso8601 >= 0.1.12',
|
||||||
'iso8601 >= 0.1.12',
|
'pytz',
|
||||||
'pytz',
|
'requests',
|
||||||
'requests',
|
'setuptools'
|
||||||
'setuptools'
|
],
|
||||||
],
|
namespace_packages=['infi'],
|
||||||
namespace_packages = ['infi'],
|
package_dir={'': 'src'},
|
||||||
|
package_data={'': []},
|
||||||
package_dir = {'': 'src'},
|
include_package_data=True,
|
||||||
package_data = {'': []},
|
zip_safe=False,
|
||||||
include_package_data = True,
|
entry_points=dict(
|
||||||
zip_safe = False,
|
console_scripts=[],
|
||||||
|
gui_scripts=[],
|
||||||
entry_points = dict(
|
),
|
||||||
console_scripts = [],
|
|
||||||
gui_scripts = [],
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if SETUP_INFO['url'] is None:
|
if SETUP_INFO['url'] is None:
|
||||||
_ = SETUP_INFO.pop('url')
|
_ = SETUP_INFO.pop('url')
|
||||||
|
|
||||||
|
|
||||||
def setup():
|
def setup():
|
||||||
from setuptools import setup as _setup
|
from setuptools import setup as _setup
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
SETUP_INFO['packages'] = find_packages('src')
|
SETUP_INFO['packages'] = find_packages('src')
|
||||||
_setup(**SETUP_INFO)
|
_setup(**SETUP_INFO)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
setup()
|
setup()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user