Skip to content

Commit a2ec904

Browse files
Move entry point and full setup to stage 8.
1 parent df02e7e commit a2ec904

8 files changed

Lines changed: 16 additions & 76 deletions

File tree

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
2-
__version__ = "0.0.1"
Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
1-
from os.path import abspath, dirname, join
21
from setuptools import setup, find_packages
32

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-
123

134
setup(
14-
name=PKG_NAME,
15-
version=info["__version__"],
16-
description='Hello world in pyface task',
5+
name="pycasa",
6+
version="0.0.1",
7+
description='ETS based GUI application for image exploration and face '
8+
'detection',
179
ext_modules=[],
1810
packages=find_packages(),
1911
data_files=[
2012
(".", ["README.md"]),
2113
],
22-
entry_points={
23-
'console_scripts': [
24-
'pycasa = {}.app.main:main'.format(PKG_NAME),
25-
],
26-
},
2714
)
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
2-
__version__ = "0.0.1"
Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
1-
from os.path import abspath, dirname, join
21
from setuptools import setup, find_packages
32

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-
123

134
setup(
14-
name=PKG_NAME,
15-
version=info["__version__"],
16-
description='Hello world in pyface task',
5+
name="pycasa",
6+
version="0.0.1",
7+
description='ETS based GUI application for image exploration and face '
8+
'detection',
179
ext_modules=[],
1810
packages=find_packages(),
1911
data_files=[
2012
(".", ["README.md"]),
2113
],
22-
entry_points={
23-
'console_scripts': [
24-
'pycasa = {}.app.main:main'.format(PKG_NAME),
25-
],
26-
},
2714
)
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
2-
__version__ = "0.0.1"
Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
1-
from os.path import abspath, dirname, join
21
from setuptools import setup, find_packages
32

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-
123

134
setup(
14-
name=PKG_NAME,
15-
version=info["__version__"],
16-
description='Hello world in pyface task',
5+
name="pycasa",
6+
version="0.0.1",
7+
description='ETS based GUI application for image exploration and face '
8+
'detection',
179
ext_modules=[],
1810
packages=find_packages(),
1911
data_files=[
2012
(".", ["README.md"]),
2113
],
22-
entry_points={
23-
'console_scripts': [
24-
'pycasa = {}.app.main:main'.format(PKG_NAME),
25-
],
26-
},
2714
)
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
2-
__version__ = "0.0.1"
Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
1-
from os.path import abspath, dirname, join
21
from setuptools import setup, find_packages
32

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-
123

134
setup(
14-
name=PKG_NAME,
15-
version=info["__version__"],
16-
description='Hello world in pyface task',
5+
name="pycasa",
6+
version="0.0.1",
7+
description='ETS based GUI application for image exploration and face '
8+
'detection',
179
ext_modules=[],
1810
packages=find_packages(),
1911
data_files=[
2012
(".", ["README.md"]),
2113
],
22-
entry_points={
23-
'console_scripts': [
24-
'pycasa = {}.app.main:main'.format(PKG_NAME),
25-
],
26-
},
2714
)

0 commit comments

Comments
 (0)