-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
setup.py
54 lines (49 loc) · 1.65 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
52
53
54
#!/usr/bin/env python3
import re
import os.path
import setuptools
import shutil
if os.path.isfile('ddgr'):
shutil.copyfile('ddgr', 'ddgr.py')
with open('ddgr.py', encoding='utf-8') as fp:
version = re.search(r'_VERSION_ = \'(.*?)\'', fp.read()).group(1)
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='ddgr',
version=version,
url='https://github.com/jarun/ddgr',
license='GPLv3',
license_file='LICENSE',
author='Arun Prakash Jana',
author_email='[email protected]',
description='DuckDuckGo from the terminal',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8',
platforms=['any'],
py_modules=['ddgr'],
entry_points={
'console_scripts': [
'ddgr = ddgr:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Utilities',
],
)