-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (25 loc) · 855 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
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("cms_consistency/version.py", "r").read(), g)
return g["Version"]
setup(
name = "cms-consistency",
version = get_version(),
author = "Igor Mandrichenko",
author_email = "[email protected]",
description = ("Rucio consistency enforcement for CMS",),
license = "BSD 3-clause",
url = "https://github.com/rucio/cms_enforcement",
packages=["cms_consistency", "cms_consistency.site_ctl", 'actions', "monitor", "site_ce", "wm"],
long_description="Rucio consistency enforcement for CMS", #read('README'),
zip_safe = False,
entry_points = {
"console_scripts": [
"site_ctl = cms_consistency.site_ctl:main"
]
}
)