forked from python-parsy/parsy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 850 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import join, dirname
import sys
sys.path.insert(0, join(dirname(__file__), 'src'))
from parsy.version import __version__
sys.path.pop(0)
setup(
name="parsy",
version=__version__,
description="easy-to-use parser combinators",
author="Jeanine Adkisson",
url="https://github.com/jneen/parsy",
author_email="jneen at jneen dot net (humans only, please)",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"License :: OSI Approved :: MIT License",
],
keywords="parser parsing monad combinators",
packages=find_packages('src'),
package_dir={'': 'src'},
)