-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 695 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import sys
from setuptools import setup
# Get dependencies from requirements.txt
with open('requirements.txt') as f:
required = f.read().splitlines()
# Package ingo
setup(
name = 'election-night-api',
version = '0.0.1',
author = 'Alan Palazzolo (MinnPost), Tom Nehil (MinnPost)',
author_email = 'apalazzolo@minnpost.com, tnehil@minnpost.com',
packages = ['ena'],
scripts = ['bin/ena'],
url = 'https://github.com/MinnPost/election-night-api',
license = 'MIT',
description = 'A set of utlities and instructions for running an election night API.',
long_description = open('README.md').read(),
install_requires = required,
)