-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (23 loc) · 959 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
from setuptools import find_packages
from setuptools import setup
setup(
name='csra_release_utils',
version='0.3',
author='DivineThreepwood',
author_email='[email protected]',
description='A collection of util scripts to support and '
'to simplify the csra release process.',
url='https://github.com/csra/csra-release-utils',
license="LGPLv3",
long_description='CSRA release utils is a script collection to simpliefy the release process of your release candidate distribution. '
'This includes the automated generation of component branches and distribution files.',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=True,
install_requires=['citk_version_updater', 'oyaml', 'GitPython', 'termcolor', 'coloredlogs'],
entry_points={
"console_scripts": [
"release-csra-rc = csra_release_utils.release:entry_point",
]
},
)