-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (37 loc) · 1.19 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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "ElectionAudits",
version = "1.0",
author = "Neal McBurnett",
author_email = "[email protected]",
description = "Help audit elections with good statistical confidence",
license = "MIT",
keywords = "audit election django",
url = "http://neal.mcburnett.org/electionaudits/",
long_description = """
ElectionAudits helps elections officials and/or citizens to work together
to implement good audits according to the "Principles and Best
Practices for Post-Election Audits"
(http://electionaudits.org/principles) and the other work of
ElectionAudits.org, the nation's clearinghouse for election audit
information.
""",
#packages = find_packages(),
install_requires = ['lxml'], # and non-eggs: Django 1.0 and sqlite
include_package_data = True,
entry_points = {
'setuptools.file_finders': [
'bzr = setuptools_bzr:find_files_for_bzr',
],
},
setup_requires = [
'setuptools_bzr',
],
#entry_points = {
# 'console_scripts': [
# 'import = root.manage', ???
# ],
# },
)