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(
|
setup(
|
||||||
name="netarch",
|
name="netarch",
|
||||||
|
@ -10,12 +10,12 @@ setup(
|
||||||
license=open("COPYING.txt").read(),
|
license=open("COPYING.txt").read(),
|
||||||
keywords="network protocol dissection cryptanalysis",
|
keywords="network protocol dissection cryptanalysis",
|
||||||
url="http://woozle.org/~neale/projects/netarch",
|
url="http://woozle.org/~neale/projects/netarch",
|
||||||
packages=find_packages(),
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Intended Audience :: Information Technology",
|
"Intended Audience :: Information Technology",
|
||||||
"License :: Other/Proprietary License",
|
"License :: Other/Proprietary License",
|
||||||
"Programming Language :: Python :: 2 :: Only",
|
"Programming Language :: Python :: 2 :: Only",
|
||||||
"Topic :: System :: Networking"
|
"Topic :: System :: Networking"
|
||||||
]
|
],
|
||||||
|
packages=['netarch'],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue