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.
21 lines
512 B
21 lines
512 B
from distutils.core import setup
|
|
|
|
setup(
|
|
name='Notiframe',
|
|
version='0.1dev',
|
|
url='https://git.distreon.net/josef/NotiFrame',
|
|
packages=['notiframe',],
|
|
install_requires=[
|
|
"toml",
|
|
"preserve@git+https://git.distreon.net/novirium/python-preserve.git"
|
|
],
|
|
extras_require={
|
|
'dev': [
|
|
'pylint',
|
|
'pytest',
|
|
'pytest-cov',
|
|
]
|
|
},
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown'
|
|
) |