forked from pinard/Pymacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 834 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 834 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
try:
from distutils.core import setup
except ImportError:
sys.stderr.write("""\
.------------------------------------------------------------------------.
| It seems that the package Distutils is not available for this Python. |
| You might fetch and install Distutils and retry your command, or else, |
| figure out where the Pymacs/ directory should go, and make that copy. |
`------------------------------------------------------------------------'
""")
sys.exit(1)
package = 'Pymacs'
version = '0.24-beta2'
setup(name=package, version=version,
description="Interface between Emacs Lisp and Python",
author='François Pinard', author_email='pinard@iro.umontreal.ca',
url='http://pymacs.progiciels-bpi.ca',
py_modules=['Pymacs'])