Skip to content

Commit f14c4ce

Browse files
committed
setup.py: Small updates for Python 3
1 parent ec4ce30 commit f14c4ce

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
import sys
44

5-
try:
6-
from setuptools import setup, Extension
7-
except ImportError:
8-
from distutils.core import setup
9-
from distutils.extension import Extension
5+
from setuptools import setup, Extension
106

117
import _version
128

@@ -52,6 +48,8 @@
5248
'Programming Language :: Python :: 3.4',
5349
'Programming Language :: Python :: 3.5',
5450
'Programming Language :: Python :: 3.6',
51+
'Programming Language :: Python :: 3.7',
52+
'Programming Language :: Python :: 3.8',
5553
'Topic :: Communications',
5654
],
5755
)

0 commit comments

Comments
 (0)