mirror of
https://github.com/Xevion/truefile.git
synced 2025-12-06 15:16:56 -06:00
22 lines
497 B
Python
22 lines
497 B
Python
import os
|
|
import io
|
|
from setuptools import find_packages, setup
|
|
|
|
DEPENDENCIES = ['Click']
|
|
EXCLUDE_FROM_PACKAGES = []
|
|
CURDIR = os.path.dirname(__file__)
|
|
|
|
setup(
|
|
name="truefile",
|
|
version="1.0.0",
|
|
author="Xevion",
|
|
author_email="xevion@xevion.dev",
|
|
description="",
|
|
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
|
|
include_package_data=True,
|
|
entry_points='''
|
|
[console_scripts]
|
|
truefile=truefile.cli:cli
|
|
''',
|
|
install_requires=DEPENDENCIES,
|
|
) |