-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·34 lines (30 loc) · 1.13 KB
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), "r").read()
def get_version():
g = {}
exec(open(os.path.join("metacat", "version.py"), "r").read(), g)
return g["Version"]
setup(
name = "metacat",
version = get_version(),
author = "Igor Mandrichenko",
author_email = "ivm@fnal.gov",
description = ("MetaCat is a general purpose metadata database. This package is the client side portion of the product."),
license = "BSD 3-clause",
keywords = "metadata, data management, database, web service",
url = "https://github.com/ivmfnal/metacat",
packages=['metacat', 'metacat.db', 'metacat.util', 'metacat.webapi', 'metacat.ui', 'metacat.auth', 'metacat.ui.cli',
'metacat.mql', 'metacat.mql.grammar', 'metacat.common', 'metacat.logs'],
include_package_data = True,
install_requires=["pyjwt", "requests", "pythreader>=2.8.0", "lark"],
zip_safe = False,
classifiers=[
],
entry_points = {
"console_scripts": [
"metacat = metacat.ui.metacat_ui:main",
]
}
)