-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (31 loc) · 1.01 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
import setuptools
import os
FILE_PATH = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(FILE_PATH, 'README.md'), 'r') as fh:
long_description = fh.read()
requirements_path = os.path.join(FILE_PATH, 'requirements.txt')
with open(requirements_path) as f:
required = f.read().splitlines()
setuptools.setup(
name='easydingbot',
version='0.0.5',
author='Wentao Li',
author_email='[email protected]',
description='A package to make dingbot easily to use',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/seniverse/easydingbot',
include_package_data=True,
package_data={'': ['*.csv', '*.config', '*.nl', '*.json']},
packages=setuptools.find_packages(),
install_requires=required,
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'easydingbot = easydingbot.main:cli'
]
}
)