Remove the types stuff et. al.

This commit is contained in:
Simon Forman
2020-05-19 13:01:37 -07:00
parent 95cd1e6cc6
commit 8bd0e7ce0e
163 changed files with 90 additions and 33382 deletions
+3 -8
View File
@@ -24,7 +24,7 @@ from textwrap import dedent
setup(
name='Thun',
version='0.4.0',
version='0.5.0',
description='Python Implementation of Joy',
long_description=dedent('''\
Joy is a programming language created by Manfred von Thun that is easy to
@@ -33,22 +33,17 @@ setup(
stay very close to the spirit of Joy but does not precisely match the
behaviour of the original version written in C.'''),
author='Simon Forman',
author_email='forman.simon@gmail.com',
author_email='sforman@hushmail.com',
url='https://joypy.osdn.io',
license='GPLv3+',
packages=['joy', 'joy.utils', 'joy.gui', 'joy.vui'],
packages=['joy', 'joy.utils'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Other',
'Topic :: Software Development :: Interpreters',
],
install_requires=[
'dulwich',
'future',
],
extras_require={
'build-docs': [
'sphinx',