mirror of https://github.com/dirtbags/netarch.git
switch to distutils as it is part of core python
This commit is contained in:
parent
519797a008
commit
c7847cf288
6
setup.py
6
setup.py
|
@ -1,4 +1,4 @@
|
|||
from setuptools import setup, find_packages
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name="netarch",
|
||||
|
@ -10,12 +10,12 @@ setup(
|
|||
license=open("COPYING.txt").read(),
|
||||
keywords="network protocol dissection cryptanalysis",
|
||||
url="http://woozle.org/~neale/projects/netarch",
|
||||
packages=find_packages(),
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Information Technology",
|
||||
"License :: Other/Proprietary License",
|
||||
"Programming Language :: Python :: 2 :: Only",
|
||||
"Topic :: System :: Networking"
|
||||
]
|
||||
],
|
||||
packages=['netarch'],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue