kasten/setup.py

26 lines
980 B
Python
Raw Normal View History

2020-04-11 07:48:28 +00:00
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='kasten',
2021-01-19 00:37:42 +00:00
version='2.0.1',
description='Efficient, secure data serialization format with extensibility.',
author='Kevin Froman',
2020-04-11 07:48:28 +00:00
author_email='beardog@mailbox.org',
url='https://git.voidnet.tech/kev/kasten',
2020-04-11 07:48:28 +00:00
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
2020-04-13 00:53:57 +00:00
python_requires='>3.6.0',
2021-01-19 00:37:42 +00:00
install_requires=['msgpack', 'mimcvdf>=1.2.0'],
2020-04-11 07:48:28 +00:00
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
],
)