-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (20 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·22 lines (20 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from distutils.core import setup
try:
import py2exe
except:
pass
setup(
name='flagpoll',
version='0.9.4',
description='Flagpoll is a tool for developers to use meta-data files for storing information on what is needed to compile their software.',
author='Daniel E. Shipton',
author_email='dshipton@infiscape.com',
license='GPL',
url='http://code.google.com/p/flagpoll/',
download_url='http://code.google.com/p/flagpoll/downloads/list',
console=['flagpoll'],
scripts=['flagpoll'],
long_description = "Flagpoll is a tool for developers to use meta-data files for storing information on what is needed to compile their software. Think of it as the rpm of software development. It enables developers total control over which packages, versions, architectures, etc. that they want to use meta-data from.",
data_files=[('share/flagpoll', ['flagpoll.fpc']), ('share/man/man1', ['flagpoll.1']), ('share/aclocal', ['flagpoll.m4']), ('share/html', ['flagpoll-manual.html'])]
)