Last change
on this file since 660 was
361,
checked in by broder, 17 years ago
|
Splitting pydhcplib off into its own package
Hold onto your hats, folks - this could get messy
|
-
Property svn:executable set to
*
|
File size:
926 bytes
|
Rev | Line | |
---|
[361] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | from distutils.core import setup |
---|
| 4 | |
---|
| 5 | fr8_manpages=['man/fr/man8/pydhcp.8.gz'] |
---|
| 6 | fr3_manpages=['man/fr/man3/pydhcplib.3.gz', |
---|
| 7 | 'man/fr/man3/pydhcplib.DhcpBasicPacket.3.gz', |
---|
| 8 | 'man/fr/man3/pydhcplib.DhcpPacket.3.gz', |
---|
| 9 | 'man/fr/man3/pydhcplib.hwmac.3.gz', |
---|
| 10 | 'man/fr/man3/pydhcplib.ipv4.3.gz', |
---|
| 11 | 'man/fr/man3/pydhcplib.strlist.3.gz'] |
---|
| 12 | en8_manpages=['man/man8/pydhcp.8.gz'] |
---|
| 13 | |
---|
| 14 | setup(name='pydhcplib', |
---|
| 15 | version="0.3.2", |
---|
| 16 | license='GPL v2', |
---|
| 17 | description='Dhcp client/server library', |
---|
| 18 | author='Mathieu Ignacio', |
---|
| 19 | author_email='tamtam@anemon.org', |
---|
| 20 | url='http://pydhcplib.tuxfamily.org/', |
---|
| 21 | packages=['pydhcplib'], |
---|
| 22 | scripts=['scripts/pydhcp'], |
---|
| 23 | data_files=[("share/man/man8",en8_manpages), |
---|
| 24 | ("share/man/fr/man8",fr8_manpages), |
---|
| 25 | ("share/man/fr/man3",fr3_manpages) |
---|
| 26 | ]) |
---|
Note: See
TracBrowser
for help on using the repository browser.