forked from varia/distribusi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
from setuptools import find_packages, setup
|
|
|
|
dependencies = [
|
|
# pinned because https://github.com/python-pillow/Pillow/issues/2609
|
|
'pillow==4.1',
|
|
'python-magic==0.4.15',
|
|
]
|
|
|
|
with open('README.md', 'r') as handle:
|
|
long_description = handle.read()
|
|
|
|
setup(
|
|
name='distribusi',
|
|
version='0.0.4',
|
|
url='https://git.vvvvvvaria.org/varia/distribusi',
|
|
license='GPLv3',
|
|
author='Varia',
|
|
description=(
|
|
'Distribusi is a content management system for '
|
|
'the web that produces static pages based on '
|
|
'the file system.'
|
|
),
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
packages=find_packages(exclude=['tests']),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
platforms='any',
|
|
install_requires=dependencies,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'distribusi = distribusi.cli:cli_entrypoint',
|
|
],
|
|
},
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'Environment :: Console',
|
|
],
|
|
)
|
|
|