-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.36 KB
/
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
30
31
from distutils.core import setup
setup(
name = 'Multi Function Runner',
packages = ['Multi Function Runner'],
version = '1.0.3',
license='MIT',
description = 'A simple library for Python to run multiple functions in a lambda function.',
author = 'Tejas',
long_description='# Multi-Function-Runner\nA simple library for Python to run multiple functions in a lambda function.\n\nExample:',
long_description_content_type="text/markdown",
author_email = 'help.a.helpcenter@gmail.com',
url = 'https://github.com/avibhardwaj233/Multi-Function-Runner',
download_url = 'https://github.com/avibhardwaj233/Multi-Function-Runner/archive/refs/tags/1.0.0.tar.gz',
keywords = ['Function', 'Multi Function runner', 'Multi function', 'Function runner'],
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)