|
6 | 6 | long_description = file.read() |
7 | 7 |
|
8 | 8 | setup( |
9 | | - name = "sifter", |
10 | | - version = "0.1", |
11 | | - author = "Gary Peck", |
12 | | - author_email = "gary@realify.com", |
13 | | - url = "https://github.com/garyp/sifter", |
14 | | - license = "BSD", |
15 | | - description = "Parser/evaluator for the Sieve filtering language (RFC 5228)", |
16 | | - long_description = long_description, |
17 | | - install_requires=[ |
18 | | - "ply", |
19 | | - ], |
20 | | - classifiers = [ |
21 | | - "Programming Language :: Python", |
22 | | - "Programming Language :: Python :: 2", |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "License :: OSI Approved :: BSD License", |
25 | | - "Development Status :: 4 - Beta", |
26 | | - "Intended Audience :: Developers", |
27 | | - "Intended Audience :: System Administrators", |
28 | | - "Operating System :: OS Independent", |
29 | | - "Topic :: Communications :: Email :: Filters", |
30 | | - "Topic :: Software Development :: Interpreters", |
31 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
32 | | - ], |
33 | | - packages = [ |
34 | | - "sifter", |
35 | | - "sifter.commands", |
36 | | - "sifter.comparators", |
37 | | - "sifter.extensions", |
38 | | - "sifter.grammar", |
39 | | - "sifter.t", |
40 | | - "sifter.tests", |
41 | | - "sifter.validators", |
42 | | - ], |
43 | | - package_data = { |
44 | | - "sifter.t" : ["*.in", "*.out", "*.msg", "*.rules"], |
45 | | - }, |
46 | | - ) |
47 | | - |
| 9 | + name="sifter", |
| 10 | + version="0.1", |
| 11 | + author="Gary Peck", |
| 12 | + author_email="gary@realify.com", |
| 13 | + url="https://github.com/garyp/sifter", |
| 14 | + license="BSD", |
| 15 | + description="Parser/evaluator for the Sieve filtering language (RFC 5228)", |
| 16 | + long_description=long_description, |
| 17 | + install_requires=[ |
| 18 | + "ply", |
| 19 | + ], |
| 20 | + classifiers=[ |
| 21 | + "Programming Language :: Python", |
| 22 | + "Programming Language :: Python :: 2", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "License :: OSI Approved :: BSD License", |
| 25 | + "Development Status :: 4 - Beta", |
| 26 | + "Intended Audience :: Developers", |
| 27 | + "Intended Audience :: System Administrators", |
| 28 | + "Operating System :: OS Independent", |
| 29 | + "Topic :: Communications :: Email :: Filters", |
| 30 | + "Topic :: Software Development :: Interpreters", |
| 31 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 32 | + ], |
| 33 | + packages=[ |
| 34 | + "sifter", |
| 35 | + "sifter.commands", |
| 36 | + "sifter.comparators", |
| 37 | + "sifter.extensions", |
| 38 | + "sifter.grammar", |
| 39 | + "sifter.t", |
| 40 | + "sifter.tests", |
| 41 | + "sifter.validators", |
| 42 | + ], |
| 43 | + package_data={ |
| 44 | + "sifter.t": ["*.in", "*.out", "*.msg", "*.rules"], |
| 45 | + }, |
| 46 | +) |
0 commit comments