File: setup.py

package info (click to toggle)
twyt 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 124 kB
  • ctags: 177
  • sloc: python: 1,016; makefile: 3
file content (21 lines) | stat: -rwxr-xr-x 499 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
import sys
import os
import twyt.info as info
from distutils.core import setup

version_string = info.VERSION

setup(name="twyt",
	version=version_string,
	description="A command line Twitter client and Twitter library",
	author="Andrew Price",
	author_email="andy@andrewprice.me.uk",
	url="http://andrewprice.me.uk/projects/twyt",
	packages = ['twyt'],
	package_dir = {'twyt': 'twyt'},
	scripts = ['scripts/twyt'],
	data_files = [
		('share/man/man1', ['docs/twyt.1'])
		]
	)