clocktower/setup.py

32 lines
808 B
Python
Raw Normal View History

2021-06-04 10:06:51 +00:00
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='clocktower',
version='0.1',
description='Sample text',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://awoo.systems',
author='haskal',
author_email='haskal@awoo.systems',
license='AGPLv3',
packages=['clocktower'],
install_requires=[],
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: Unix",
"Typing :: Typed"
],
include_package_data=True,
entry_points={
'console_scripts': [
# TODO
]
},
zip_safe=True)