Skip to content

Commit 4e5cc74

Browse files
Add missing files.
1 parent ed645c0 commit 4e5cc74

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# First real version of the pycasa ETS pyface application!
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from os.path import abspath, dirname, join
2+
from setuptools import setup, find_packages
3+
4+
HERE = dirname(abspath(__file__))
5+
6+
PKG_NAME = "pycasa"
7+
8+
info = {}
9+
init_file = join(HERE, PKG_NAME, "__init__.py")
10+
exec(open(init_file).read(), globals(), info)
11+
12+
13+
setup(
14+
name=PKG_NAME,
15+
version=info["__version__"],
16+
description='Hello world in pyface task',
17+
ext_modules=[],
18+
packages=find_packages(),
19+
data_files=[
20+
(".", ["README.md"]),
21+
],
22+
entry_points={
23+
'console_scripts': [
24+
'pycasa = {}.app.main:main'.format(PKG_NAME),
25+
],
26+
},
27+
)

0 commit comments

Comments
 (0)