preserves/implementations/python/setup.py

25 lines
796 B
Python
Raw Normal View History

2018-11-15 07:09:35 +00:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="preserves",
2019-06-11 21:31:02 +00:00
version="0.0.5",
2018-11-15 07:09:35 +00:00
author="Tony Garnock-Jones",
author_email="tonyg@leastfixedpoint.com",
license="GNU General Public License v3 or later (GPLv3+)",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
],
packages=["preserves"],
url="https://gitlab.com/tonyg/preserves",
description="Experimental data serialization format",
install_requires=[],
python_requires=">=3.6, <4",
)