File: setup.py

package info (click to toggle)
padaos 0.1.10-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 84 kB
  • sloc: python: 189; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3

from setuptools import setup

setup(
    name='padaos',
    version='0.1.10',
    description='A rigid, lightweight, dead-simple intent parser',
    url='http://github.com/MatthewScholefield/padaos',
    author='Matthew Scholefield',
    author_email='matthew331199@gmail.com',
    license='MIT',
    py_modules=[
        'padaos'
    ],
    zip_safe=True
)