-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 777 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 777 Bytes
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='gfcc',
version='0.5',
description='A layer of automation for ClearCase with a touch of git flavour',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
],
keywords='git clearcase cleartool',
url='https://github.com/bmpenuelas/gfcc',
author='Borja Penuelas',
author_email='bmpenuelas@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
],
scripts=[
],
entry_points={
'console_scripts': [
'gfcc=gfcc.gfcc:main',
]
}
)