1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# thumbor imaging service
# https://github.com/globocom/thumbor/wiki
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com timehome@corp.globo.com
from setuptools import setup
from derpconf.version import __version__
tests_require = [
'gevent',
'pyVows',
'coverage',
'colorama',
'tox',
'six',
]
def run_setup(extension_modules=[]):
setup(
name='derpconf',
version=__version__,
description="derpconf abstracts loading configuration files for your app",
long_description="""
derpconf abstracts loading configuration files for your app.
""",
keywords='configuration',
author='globo.com',
author_email='timehome@corp.globo.com',
url='https://github.com/globocom/derpconf',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=['derpconf'],
package_dir={"derpconf": "derpconf"},
install_requires=[
'six',
],
extras_require={
'tests': tests_require,
},
include_package_data=False
)
run_setup()
|