-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 837 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
import pyfpm
setup(name='pyfpm',
version=pyfpm.__version__,
author=pyfpm.__author__,
author_email='martinblech@gmail.com',
url='https://github.com/martinblech/pyfpm',
description='Scala-like functional pattern matching in Python.',
long_description="""`pyfpm` stands for PYthon Functional Pattern
Matching. It's been heavily inspired by the Pattern Matching and Case
Classes implementation in Scala.""",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
],
packages=['pyfpm'],
requires=['pyparsing'],
)