Asciifarm/setup.py

36 lines
1.1 KiB
Python
Raw Normal View History

2017-10-26 17:05:49 +00:00
from setuptools import setup, find_packages
setup(
name='asciifarm',
version='0.1.1',
description="Troido's tilde.town ASCII Farm",
long_description="TODO",
author="Troido",
author_email='troido@tilde.town',
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
'testasciifarm = asciifarm.__main__:main',
2017-10-26 17:05:49 +00:00
],
},
install_requires=[
# TODO: Put other requirements here -wangofett, 2017-10-26
2017-10-26 17:05:49 +00:00
],
tests_require=[
# TODO: put tests requirements here -wangofett, 2017-10-26
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
)