-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (30 loc) · 830 Bytes
/
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
import os.path
from nagato import __version__ as version
try:
from setuptools import find_packages, setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages, setup
def readme():
try:
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
return f.read()
except (IOError, OSError):
return ''
setup(
name='nagato',
version=version,
description='Bypass korean firewall(warning.or.kr)',
long_description=readme(),
url='https://github.com/kjwon15/nagato',
author='Kjwon15',
author_email='kjwonmail' '@' 'gmail.com',
entry_points={
'console_scripts': [
'nagato = nagato:main'
]
},
license='GPLv3 or later',
py_modules=['nagato'],
)