-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
69 lines (61 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
'''
Author: pixelhegel pixelhegel@gmail.com
Date: 2022-10-08 13:10:59
LastEditors: pixelhegel pixelhegel@gmail.com
LastEditTime: 2022-10-10 10:58:17
FilePath: /NotionDict/setup.py
Description:
Copyright (c) 2022 by pixelhegel pixelhegel@gmail.com, All Rights Reserved.
'''
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from notiondict import __version__
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'readmdict',
'requests',
'docopt',
'pyclip',
'PyYAML'
]
setup(
name='notiondict',
version=__version__,
description='A high customized dictionary',
long_description=readme,
author='Pixelhegel',
author_email='Pixelhegel@gmail.com',
url='https://github.com/pixelhegel/notiondict',
packages=[
'notiondict',
],
package_dir={'notiondict':
'notiondict'},
include_package_data=True,
package_data={'': ['config.yml','get_active_window_title_macos.scpt']},
install_requires=requirements,
license='Apache License',
zip_safe=False,
keywords='dictionary notification tool',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
entry_points={
'console_scripts': [
'notiondict=notiondict.notiondict:main',
],
},
)