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.
25 lines
689 B
25 lines
689 B
from setuptools import setup
|
|
|
|
setup(name='preserve',
|
|
version='0.3dev',
|
|
description='Preserve, for when pickling is just a bit too intense',
|
|
url='https://git.distreon.net/novirium/python-preserve',
|
|
author='novirium',
|
|
author_email='t.wilson.au@gmail.com',
|
|
license='MIT',
|
|
packages=[],
|
|
py_modules=['preserve'],
|
|
extras_require={
|
|
'dev': [
|
|
'pylint',
|
|
'autopep8',
|
|
'pytest',
|
|
'pytest-flake8',
|
|
'pytest-cov',
|
|
'pytest-sugar'
|
|
]
|
|
},
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown'
|
|
)
|