You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
831 B
32 lines
831 B
from setuptools import setup
|
|
|
|
setup(name='config-spec',
|
|
version='0.4dev',
|
|
description='',
|
|
url='https://git.distreon.net/novirium/config-spec',
|
|
author='novirium',
|
|
author_email='t.wilson.au@gmail.com',
|
|
license='MIT',
|
|
packages=['configspec'],
|
|
install_requires=[
|
|
"toml",
|
|
"preserve@git+https://git.distreon.net/novirium/python-preserve.git"
|
|
],
|
|
extras_require={
|
|
'dev': [
|
|
'autopep8',
|
|
'pytest',
|
|
'pytest-flake8',
|
|
'pytest-cov',
|
|
'pytest-sugar',
|
|
'tox'
|
|
],
|
|
'test': [
|
|
'pytest',
|
|
'pytest-flake8'
|
|
]
|
|
},
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown'
|
|
)
|