-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 816 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 816 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
from setuptools import setup, find_packages
from github.core.version import get_version
VERSION = get_version()
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='github',
version=VERSION,
description='A cli based tools for basic github platform operation like creating a new repo, branch etc.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Sameer Jha',
author_email='sameer.btech.cs17@iiitranchi.ac.in',
url='https://github.com/Sameer-Jha/github_cli',
license='unlicensed',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'github': ['templates/*']},
include_package_data=True,
entry_points="""
[console_scripts]
github = github.main:main
""",
)