You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
639 B
25 lines
639 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
VERSION='0.2.3'
|
|
|
|
setup(
|
|
name='phylter',
|
|
version=VERSION,
|
|
description='Library for a filter DSL in python',
|
|
long_description='See `README.md <https://code.not-your-server.de/phylter.git>`_',
|
|
author='Johann Schmitz',
|
|
author_email='johann@j-schmitz.net',
|
|
url='https://ercpe.de/projects/phylter',
|
|
download_url='https://code.not-your-server.de/phylter.git/tags/%s.tar.gz' % VERSION,
|
|
packages=find_packages('src'),
|
|
package_dir={'': 'src'},
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
license='GPL-3',
|
|
install_requires=[
|
|
'pyparsing',
|
|
]
|
|
)
|