Skip to content

Commit a0521e4

Browse files
committed
dont make tests a package thats added
1 parent 0307d05 commit a0521e4

2 files changed

Lines changed: 17 additions & 15 deletions

File tree

setup.py

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,27 @@
22
import sys
33
from messaging import VERSION
44

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',
1417
'License :: OSI Approved :: GNU General Public License (GPL)',
1518
'Natural Language :: English',
1619
'Operating System :: POSIX :: Linux',
1720
'Programming Language :: Python',
18-
'Programming Language :: Python :: 2.5',
19-
'Programming Language :: Python :: 2.6',
20-
'Programming Language :: Python :: 2.7',
2121
'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',
2426
'Topic :: Communications :: Telephony',
25-
],
27+
],
2628
)

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)