-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 708 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='TinyPy Interpreter',
version='0.4',
author='Max Malysh',
author_email='iam@maxmalysh.com',
description='Interpreter of a small Python subset I have made as a coursework. ',
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 3 - Alpha",
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
],
install_requires = [ 'setuptools-git' ],
include_package_data = True,
packages=find_packages(),
entry_points = {
'console_scripts' : [ 'tinypy = tinypy.tinypyapp:main']
},
test_suite = 'tinypy.run_tests.get_suite',
)