forked from python-sifter/sifter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.4 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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name = "sifter",
version = "0.1",
author = "Gary Peck",
author_email = "[email protected]",
url = "https://github.com/garyp/sifter",
license = "BSD",
description = "Parser/evaluator for the Sieve filtering language (RFC 5228)",
long_description = long_description,
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Communications :: Email :: Filters",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages = [
"sifter",
"sifter.commands",
"sifter.comparators",
"sifter.extensions",
"sifter.grammar",
"sifter.t",
"sifter.tests",
"sifter.validators",
],
package_data = {
"sifter.t" : ["*.in", "*.out", "*.msg", "*.rules"],
},
)