We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2e1049 commit 8066269Copy full SHA for 8066269
1 file changed
stage3.0_first_views/setup.py
@@ -0,0 +1,28 @@
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
11
+with open(init_file) as fp:
12
+ exec(fp.read(), globals(), info)
13
14
+setup(
15
+ name=PKG_NAME,
16
+ version=info["__version__"],
17
+ description='Hello world for TraitsUI views',
18
+ ext_modules=[],
19
+ packages=find_packages(),
20
+ data_files=[
21
+ (".", ["README.md"]),
22
+ ],
23
+ entry_points={
24
+ 'console_scripts': [
25
+ f'pycasa = {PKG_NAME}.app.main:main',
26
27
+ },
28
+)
0 commit comments