Fix more installation issues
This commit is contained in:
parent
27afad7312
commit
eb815a8171
|
@ -30,7 +30,7 @@ class DevicehubConfig(Config):
|
||||||
BenchmarkProcessorSysbenchDef, BenchmarkRamSysbenchDef
|
BenchmarkProcessorSysbenchDef, BenchmarkRamSysbenchDef
|
||||||
}
|
}
|
||||||
PASSWORD_SCHEMES = {'pbkdf2_sha256'} # type: Set[str]
|
PASSWORD_SCHEMES = {'pbkdf2_sha256'} # type: Set[str]
|
||||||
SQLALCHEMY_DATABASE_URI = 'postgresql://localhost/devicehub' # type: str
|
SQLALCHEMY_DATABASE_URI = 'postgresql://dhub:ereuse@localhost/devicehub' # type: str
|
||||||
MIN_WORKBENCH = StrictVersion('11.0') # type: StrictVersion
|
MIN_WORKBENCH = StrictVersion('11.0') # type: StrictVersion
|
||||||
"""
|
"""
|
||||||
The minimum algorithm_version of eReuse.org Workbench that this Devicehub
|
The minimum algorithm_version of eReuse.org Workbench that this Devicehub
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="ereuse-devicehub",
|
name="ereuse-devicehub",
|
||||||
version='0.2.0a5',
|
version='0.2.0a6',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
url='https://github.com/ereuse/devicehub-teal',
|
url='https://github.com/ereuse/devicehub-teal',
|
||||||
license='Affero',
|
license='Affero',
|
||||||
|
|
Reference in New Issue