-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.39 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
from subprocess import call
from sys import exit, version_info
from setuptools import Command, find_packages, setup
from grepg import __version__ as version
setup(
name = 'grepg',
version = version,
description = 'GrepPage Command Line Client',
url = 'https://github.com/evidanary/grepg-python',
packages = find_packages(),
include_package_data = True,
# Author information:
author = ['Yash Ranadive', 'Tejal Desai'],
author_email = '[email protected]',
# Metadata:
keywords = ['greppage', 'client', 'cli'],
python_requires='>=3',
license = 'MIT',
install_requires = [
'PyYAML==3.12',
'termcolor==1.1.0',
],
extras_require = {
},
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Environment :: Console',
'Intended Audience :: Developers',
],
# Script information:
entry_points = {
'console_scripts': [
'grepg = grepg.main:main'
]
},
)