forked from aliafshar/a8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 693 Bytes
/
Copy pathsetup.py
File metadata and controls
40 lines (36 loc) · 693 Bytes
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
# -*- coding: utf-8 -*-
# (c) 2005-2011 PIDA Authors
# vim: ft=python sw=2 ts=2 sts=2 tw=80
from setuptools import setup
from a8 import version
setup(
name = 'a8',
author = 'Ali Afshar',
author_email = 'aafshar@gmail.com',
description = 'The Abominade IDE',
license = 'GPL',
url = 'http://abominade.org',
version = version.VERSION,
install_requires = [
'psutil',
'logbook',
'pygtkhelpers>=0.4.3',
'argparse',
'pyyaml',
],
packages = [
'a8',
],
package_data = {
'a8': [
'data/icons/*.png',
'data/a8.vim',
],
},
entry_points = {
'console_scripts': [
'a8 = a8.__main__:main'
],
},
zip_safe = False,
)