-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 956 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
version = '2.0.3'
setup(
name='yogi',
packages=['yogi'],
install_requires=[''],
package_data={"yogi": ["__init__.pyi", "py.typed", "yogi.codon"]},
version=version,
description='Simple typed interface to read input in Python',
long_description='Simple typed interface to read input in Python',
author='Jordi Petit',
author_email='[email protected]',
url='https://github.com/jutge-org/yogi',
download_url=f'https://github.com/jutge-org/yogi/tarball/{version}',
keywords=['yogi', 'education', 'input', 'read', 'scan'],
license='Apache',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
],
)