-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 994 Bytes
/
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
43
#!/bin/env python
# -*- coding: utf8 -*-
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
version = "0.1.0"
setup(
name="Nethervote",
version=version,
description=("Project for HackUpstate 2014 Using Flask and Evernote for "
"Civic Hacking"),
classifiers=[
"Topic :: Education",
],
keywords="evernote flask python civic hacking",
author="Mike Nolan & Remy D",
author_email="<[email protected]> <[email protected]>",
url="http://fossrit.github.io/nethervote",
license="AGPLv3+",
packages=find_packages(
),
scripts=[
"distribute_setup.py",
],
include_package_data=True,
zip_safe=False,
install_requires=[
"flask",
"flask-oauth",
"evernote",
"flask-mako",
"feedparser",
],
#TODO: Deal with entry_points
#entry_points="""
#[console_scripts]
#pythong = pythong.util:parse_args
#"""
)