-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (36 loc) · 803 Bytes
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
if __name__ == '__main__':
setup(
name="LabbookDB",
version="0.0.1",
description = "A Wet-Work-Tracking Database Application Framework",
author = "Horea Christian",
author_email = "[email protected]",
url = "https://github.com/TheChymera/LabbookDB",
keywords = [
"laboratory notebook",
"labbook",
"wet work",
"record keeping",
"reports",
"life science",
"biology",
"neuroscience",
"behaviour",
"relational database",
"SQL",
],
classifiers = [],
install_requires = [],
provides = ["labbookdb"],
packages = [
"labbookdb",
"labbookdb.db",
"labbookdb.evaluate",
"labbookdb.introspection",
"labbookdb.report",
],
entry_points = {'console_scripts' : \
['LDB = labbookdb.cli:main']
}
)