Asciifarm/setup.py

34 lines
1.0 KiB
Python
Raw Normal View History

2017-10-26 17:05:49 +00:00
from setuptools import setup, find_packages
setup(
name='asciifarm',
2024-03-22 19:53:08 +00:00
version='0.1.2',
2017-10-26 17:05:49 +00:00
description="Troido's tilde.town ASCII Farm",
long_description="TODO",
author="Troido",
2019-09-28 22:53:13 +00:00
author_email='troido@tilde.club',
2017-10-26 17:23:48 +00:00
url='https://github.com/jmdejong/Asciifarm',
2017-10-26 17:05:49 +00:00
packages=find_packages(),
include_package_data=True,
data_files=[
('charmaps', ['asciifarm/charmaps/default.json', 'asciifarm/charmaps/fullwidth.json']),
],
entry_points={
'console_scripts': [
#'asciifarm = asciifarm.client.main:main',
#'hostfarms = asciifarm.server.main:main',
# TODO: troido, if you want just one asciifarm command, change
# this to asccifarm and remove the previous two lines -wangofett, 2017-10-27
'asciifarm = asciifarm.__main__:main',
2017-10-26 17:05:49 +00:00
],
},
install_requires=[
],
tests_require=[
2017-10-26 17:23:48 +00:00
],
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
2017-10-26 17:05:49 +00:00
)