-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.03 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
#!/usr/bin/env python3
# setup.py
from setuptools import setup
setup(
name='GHOffline',
version ='1.1',
description = 'Check offline site in a repository of Github',
long_description = '''
GHOffline
===========
Check offline site in a repository of Github
How to use
===============
$> ghoffline your_username your_password user/repo
Output in text (off_<user_repo>.txt)
Very simple :)
''',
author = 'Tiago Danin',
author_email = 'TiagoDanin@outlook.com',
license = 'GPLv3',
url = 'https://TiagoDanin.github.io/ghoffline/',
scripts = ['ghoffline'],
install_requires= [
'pygithub',
'regex',
'requests'
],
classifiers = [
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'
],
keywords = 'http https offline validation github repository repo'
)