|
2 | 2 | import sys |
3 | 3 | from messaging import VERSION |
4 | 4 |
|
5 | | -setup(name="python-messaging", |
6 | | - version='%s.%s.%s' % VERSION, |
7 | | - description='SMS/MMS encoder/decoder', |
8 | | - license=open('COPYING').read(), |
9 | | - packages=find_packages(), |
10 | | - zip_safe=True, |
11 | | - test_suite='nose.collector', |
12 | | - classifiers=[ |
13 | | - 'Development Status :: 4 - Beta', |
| 5 | +setup( |
| 6 | + name="python-messaging", |
| 7 | + version='%s.%s.%s' % VERSION, |
| 8 | + description='SMS/MMS encoder/decoder', |
| 9 | + license=open('COPYING').read(), |
| 10 | + packages=find_packages(), |
| 11 | + py_modules=["messaging"], |
| 12 | + include_package_data=True, |
| 13 | + package_data={'messaging': ['README.md']}, |
| 14 | + zip_safe=False, |
| 15 | + classifiers=[ |
| 16 | + 'Development Status :: 5 - Production/Stable', |
14 | 17 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
15 | 18 | 'Natural Language :: English', |
16 | 19 | 'Operating System :: POSIX :: Linux', |
17 | 20 | 'Programming Language :: Python', |
18 | | - 'Programming Language :: Python :: 2.5', |
19 | | - 'Programming Language :: Python :: 2.6', |
20 | | - 'Programming Language :: Python :: 2.7', |
21 | 21 | 'Programming Language :: Python :: 3', |
22 | | - 'Programming Language :: Python :: 3.1', |
23 | | - 'Programming Language :: Python :: 3.2', |
| 22 | + 'Programming Language :: Python :: 3.5', |
| 23 | + 'Programming Language :: Python :: 3.6', |
| 24 | + 'Programming Language :: Python :: 3.7', |
| 25 | + 'Programming Language :: Python :: 3.8', |
24 | 26 | 'Topic :: Communications :: Telephony', |
25 | | - ], |
| 27 | + ], |
26 | 28 | ) |
0 commit comments