opnsense-ports/devel/py-flit-core/files/setup.py
Franco Fichtner 4ed633e028 */*: sync with upstream
Taken from: HardenedBSD
2020-09-08 05:13:01 +02:00

19 lines
659 B
Python

from setuptools import setup, find_packages
import flit_core
setup(
name='flit_core',
version=flit_core.__version__,
author='Thomas Kluyver & contributors',
author_email='thomas@kluyver.me.uk',
description="Flit's core machinery for building packages.",
long_description='Distribution-building parts of Flit. See flit package for more information',
url='https://github.com/takluyver/flit',
packages=find_packages(),
install_requires=['pytoml'],
requires_python='>=3.4',
classifiers=[
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)