-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (39 loc) · 1.4 KB
/
setup.py
File metadata and controls
executable file
·42 lines (39 loc) · 1.4 KB
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
33
34
35
36
37
38
39
40
41
42
#! /usr/bin/env python
#! -*- coding: utf-8 *-*-
from setuptools import setup, find_packages
readme = open('README.md', 'r').read()
setup(
name='gists.cli',
version='0.351',
url='https://github.com/khilnani/gists.cli',
license='GPLv2',
author='khilnani',
author_email='nik@khilnani.org',
description='A CLI to create, edit, view and list your GitHub Gists',
include_package_data=True,
long_description=readme,
packages=find_packages(),
install_requires=['requests','texttable'],
entry_points={
'console_scripts': [
'gists = gists_cli.gists:main',
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)