forked from DIRACGrid/DIRACOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 976 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
# This is the setup.py used to package the deployment script
# and fetch the needed dependecy
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
setup(
name='diracos',
description='Tools to build DIRACOS',
version="0.0.1",
author='Christophe Haen',
author_email='[email protected]',
url='https://github.com/DIRACGrid/DIRACOS',
license='GPLv3',
entry_points={
'console_scripts': ['dos-build-all-rpms=scripts.buildAll:main',
'dos-build-package=scripts.buildPackage:main',
'dos-build-python-modules=scripts.buildPythonModules:main',
'dos-bundle=scripts.bundleDiracOS:main',
'dos-dump-config=scripts.dumpConfig:main',
'dos-fix-pip-versions=scripts.fixPipRequirementsVersions:main'
],
},
packages=find_packages()
)