|
9 | 9 |
|
10 | 10 | setup(
|
11 | 11 | name='email2slack',
|
12 |
| - |
13 |
| - version='1.0.0a3', |
14 |
| - |
| 12 | + version='1.0.0a4', |
15 | 13 | description='MIME E-mail forwarding script for Slack written in Python',
|
16 | 14 | long_description=long_description,
|
17 |
| - |
18 | 15 | url='https://github.com/mikoim/email2slack',
|
19 |
| - |
20 | 16 | author='Eshin Kunishima',
|
21 | 17 |
|
22 |
| - |
| 18 | + packages=['email2slack'], |
23 | 19 | license='MIT',
|
24 |
| - |
25 | 20 | classifiers=[
|
26 | 21 | 'Development Status :: 3 - Alpha',
|
27 |
| - |
28 | 22 | 'Topic :: Communications',
|
29 | 23 | 'Topic :: Communications :: Email',
|
30 | 24 | 'Topic :: Communications :: Email :: Mail Transport Agents',
|
31 | 25 | 'Topic :: Communications :: Chat',
|
32 |
| - |
33 | 26 | 'License :: OSI Approved :: MIT License',
|
34 |
| - |
35 | 27 | 'Programming Language :: Python',
|
36 | 28 | 'Programming Language :: Python :: 2',
|
37 | 29 | 'Programming Language :: Python :: 2.7',
|
|
41 | 33 | 'Programming Language :: Python :: 3.5',
|
42 | 34 | 'Programming Language :: Python :: 3.6',
|
43 | 35 | ],
|
44 |
| - |
45 | 36 | keywords='email slack forwarding',
|
46 |
| - |
47 |
| - py_modules=['email2slack'], |
48 |
| - |
| 37 | + requires=[ |
| 38 | + 'beautifulsoup4', |
| 39 | + 'certifi', |
| 40 | + 'chardet', |
| 41 | + 'idna', |
| 42 | + 'lxml', |
| 43 | + 'requests', |
| 44 | + 'urllib3', |
| 45 | + ], |
49 | 46 | install_requires=[
|
50 | 47 | 'beautifulsoup4==4.6.0',
|
51 | 48 | 'certifi==2017.4.17',
|
|
55 | 52 | 'requests==2.18.2',
|
56 | 53 | 'urllib3==1.22',
|
57 | 54 | ],
|
58 |
| - |
59 | 55 | entry_points={
|
60 | 56 | 'console_scripts': [
|
61 | 57 | 'email2slack = email2slack:main',
|
|
0 commit comments