]> git.datanom.net - lensdatabase.git/commitdiff
update .gitignore and add setup tools master
authorMichael Rasmussen <mir@datanom.net>
Mon, 15 Apr 2024 23:53:16 +0000 (01:53 +0200)
committerMichael Rasmussen <mir@datanom.net>
Mon, 15 Apr 2024 23:53:16 +0000 (01:53 +0200)
Signed-off-by: Michael Rasmussen <mir@datanom.net>
.gitignore
README.md [new file with mode: 0644]
setup.py [new file with mode: 0644]

index 1f60007074e9fc854481e152e37740389125f7cf..d4c9aebe852acc3ef23f79dd65c5606a93c4a71a 100644 (file)
@@ -21,4 +21,7 @@ env/
 .env/
 *.epj
 *.db
+Lensdatabase.egg-info/
+dist/
+
 
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..079613a
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+from distutils.core import setup
+
+setup(
+       name='Lensdatabase',
+       version='1.0',
+       license='GPLv3',
+       author='Michael Rasmussen',
+       author_email='mir@datanom.net',
+       py_modules=['db', 'lensdb', 'main', 'newlensdialog', 'notebook', 'searchwindow', 'textview'],
+       data_files=[
+               ('icons', ['icons/245796-200.png','icons/245796-25.png','icons/245796-50.png','icons/add.png','icons/no-camera.png','icons/search-icon-png-5.png',]),
+               ('ui', ['lensdatabase.ui'])
+       ],
+)
This page took 0.03244 seconds and 5 git commands to generate.