preserves/implementations/python/setup.py

25 lines
752 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",
version="0.6.0",
2018-11-15 07:09:35 +00:00
author="Tony Garnock-Jones",
author_email="tonyg@leastfixedpoint.com",
2019-08-31 20:04:52 +00:00
license="Apache Software License",
2018-11-15 07:09:35 +00:00
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
2019-08-31 20:04:52 +00:00
"License :: OSI Approved :: Apache Software License",
2018-11-15 07:09:35 +00:00
"Programming Language :: Python :: 3",
],
packages=["preserves"],
2019-08-31 20:04:52 +00:00
url="https://gitlab.com/preserves/preserves",
2018-11-15 07:09:35 +00:00
description="Experimental data serialization format",
install_requires=[],
python_requires=">=3.6, <4",
)